[arch-commits] Commit in haskell-tasty-checklist/repos (2 files)
Felix Yan
felixonmars at gemini.archlinux.org
Wed Jul 21 18:47:06 UTC 2021
Date: Wednesday, July 21, 2021 @ 18:47:06
Author: felixonmars
Revision: 982646
archrelease: copy trunk to community-staging-x86_64
Added:
haskell-tasty-checklist/repos/community-staging-x86_64/
haskell-tasty-checklist/repos/community-staging-x86_64/PKGBUILD
(from rev 982645, haskell-tasty-checklist/trunk/PKGBUILD)
----------+
PKGBUILD | 48 ++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 48 insertions(+)
Copied: haskell-tasty-checklist/repos/community-staging-x86_64/PKGBUILD (from rev 982645, haskell-tasty-checklist/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2021-07-21 18:47:06 UTC (rev 982646)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+_hkgname=tasty-checklist
+pkgname=haskell-tasty-checklist
+pkgver=1.0.1.0
+pkgrel=6
+pkgdesc="Check multiple items during a tasty test"
+url="https://github.com/kquick/tasty-checklist"
+license=("custom:ISC")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-parameterized-utils')
+makedepends=('ghc' 'uusi' 'haskell-tasty' 'haskell-tasty-expected-failure' 'haskell-tasty-hunit')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz")
+sha512sums=('224ae60c450ebadd677d0227526a34ce2b3cee4491b164e0261ebcf40b3eb945d34fbda1f5e82611317331fb61253ebdb4c2c302296d92234ec365c37e3cde34')
+
+prepare() {
+ cd $_hkgname-$pkgver
+ gen-setup
+}
+
+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=-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
+}
+
+check() {
+ cd $_hkgname-$pkgver
+ runhaskell Setup test --show-details=direct
+}
+
+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"
+}
More information about the arch-commits
mailing list