[arch-commits] Commit in haskell-test-lib/repos (2 files)
Felix Yan
felixonmars at gemini.archlinux.org
Thu Jan 27 20:23:21 UTC 2022
Date: Thursday, January 27, 2022 @ 20:23:21
Author: felixonmars
Revision: 1117579
archrelease: copy trunk to community-staging-x86_64
Added:
haskell-test-lib/repos/community-staging-x86_64/
haskell-test-lib/repos/community-staging-x86_64/PKGBUILD
(from rev 1117578, haskell-test-lib/trunk/PKGBUILD)
----------+
PKGBUILD | 44 ++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 44 insertions(+)
Copied: haskell-test-lib/repos/community-staging-x86_64/PKGBUILD (from rev 1117578, haskell-test-lib/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2022-01-27 20:23:21 UTC (rev 1117579)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+_hkgname=test-lib
+pkgname=haskell-test-lib
+pkgver=0.4
+pkgrel=4
+pkgdesc="A library to make a quick test-runner script."
+url="https://hackage.haskell.org/package/test-lib"
+license=("custom:ISC")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-hunit' 'haskell-simple-get-opt' 'haskell-test-framework'
+ 'haskell-test-framework-hunit')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz")
+sha256sums=('852cff65aae4aaf0fe98c13abc6728c05afb8e24079dd8b2a3e4b7bd8f98e04a')
+
+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'
+
+ 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
+}
+
+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
+
+ # Conflicts with bluez-utils
+ mv "$pkgdir"/usr/bin/{,hs-}test-runner
+}
More information about the arch-commits
mailing list