Date: Thursday, March 24, 2022 @ 20:17:16 Author: felixonmars Revision: 1175199
archrelease: copy trunk to community-staging-x86_64 Added: haskell-list-t/repos/community-staging-x86_64/ haskell-list-t/repos/community-staging-x86_64/PKGBUILD (from rev 1175198, haskell-list-t/trunk/PKGBUILD) ----------+ PKGBUILD | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) Copied: haskell-list-t/repos/community-staging-x86_64/PKGBUILD (from rev 1175198, haskell-list-t/trunk/PKGBUILD) =================================================================== --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2022-03-24 20:17:16 UTC (rev 1175199) @@ -0,0 +1,51 @@ +# Maintainer: Felix Yan <felixonm...@archlinux.org> + +_hkgname=list-t +pkgname=haskell-list-t +pkgver=1.0.5 +pkgrel=25 +pkgdesc="ListT done right" +url="https://github.com/nikita-volkov/list-t" +license=("MIT") +arch=('x86_64') +depends=('ghc-libs' 'haskell-foldl' 'haskell-logict' 'haskell-mmorph' 'haskell-monad-control' + 'haskell-transformers-base') +makedepends=('ghc' 'uusi' 'haskell-htf' 'haskell-base-prelude' 'haskell-mtl-prelude') +source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz") +sha256sums=('bea637e86285941b7eb76107f492e4e6feda02354f6ada61d80bf9a27211d6bf') + +prepare() { + cd $_hkgname-$pkgver + uusi -d semigroups $_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 --datasubdir=$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 +} + +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" + install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/ + rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE +}