Date: Thursday, July 29, 2021 @ 17:36:02 Author: felixonmars Revision: 990446
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 990445, haskell-tasty-checklist/trunk/PKGBUILD) ----------+ PKGBUILD | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) Copied: haskell-tasty-checklist/repos/community-staging-x86_64/PKGBUILD (from rev 990445, haskell-tasty-checklist/trunk/PKGBUILD) =================================================================== --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2021-07-29 17:36:02 UTC (rev 990446) @@ -0,0 +1,50 @@ +# Maintainer: Felix Yan <felixonm...@archlinux.org> + +_hkgname=tasty-checklist +pkgname=haskell-tasty-checklist +pkgver=1.0.2.0 +pkgrel=7 +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-doctest' 'haskell-hunit' 'haskell-tasty' + 'haskell-tasty-expected-failure' 'haskell-tasty-hunit') +source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz") +sha512sums=('98dc3d32f6d13635da70057dd5efb5963a6e826180dc0c0382b447e28cc53b0e1c3fb3bd2376dd4ff4dd6935b759985701a9920e2f3a82591a43708fdd74b47b') + +prepare() { + cd $_hkgname-$pkgver + gen-setup + uusi -u doctest $_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=-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" +}