[arch-commits] Commit in haskell-direct-sqlite/repos (2 files)
Felix Yan
felixonmars at gemini.archlinux.org
Fri Dec 31 04:02:40 UTC 2021
Date: Friday, December 31, 2021 @ 04:02:40
Author: felixonmars
Revision: 1089402
archrelease: copy trunk to community-staging-x86_64
Added:
haskell-direct-sqlite/repos/community-staging-x86_64/
haskell-direct-sqlite/repos/community-staging-x86_64/PKGBUILD
(from rev 1089401, haskell-direct-sqlite/trunk/PKGBUILD)
----------+
PKGBUILD | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 52 insertions(+)
Copied: haskell-direct-sqlite/repos/community-staging-x86_64/PKGBUILD (from rev 1089401, haskell-direct-sqlite/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2021-12-31 04:02:40 UTC (rev 1089402)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+_hkgname=direct-sqlite
+pkgname=haskell-direct-sqlite
+pkgver=2.3.26
+pkgrel=56
+pkgdesc="Low-level binding to SQLite3. Includes UTF8 and BLOB support."
+url="https://github.com/IreneKnapp/direct-sqlite"
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'sqlite')
+makedepends=('ghc' 'haskell-hunit' 'haskell-base16-bytestring' 'haskell-temporary')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz")
+sha256sums=('7e18237a0129b69b68db394bf1d912b664edf16ce335cbd65330d10eb1e2f9fc')
+
+prepare() {
+ cd $_hkgname-$pkgver
+ sed -i '/semigroups/d' $_hkgname.cabal
+}
+
+build() {
+ cd $_hkgname-$pkgver
+
+ runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \
+ --prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+ --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid --ghc-option=-fllvm \
+ --ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+ --ghc-option='-pie' \
+ -fsystemlib
+
+ runhaskell Setup build $MAKEFLAGS
+ runhaskell Setup register --gen-script
+ runhaskell Setup unregister --gen-script
+ sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+ sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+ cd $_hkgname-$pkgver
+ # https://github.com/IreneKnapp/direct-sqlite/issues/85
+ runhaskell Setup test || echo "Tests failed"
+}
+
+package() {
+ cd $_hkgname-$pkgver
+
+ install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+ install -D -m744 unregister.sh "$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+ runhaskell Setup copy --destdir="$pkgdir"
+ install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+ rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}
More information about the arch-commits
mailing list