Date: Tuesday, January 11, 2022 @ 11:19:59 Author: felixonmars Revision: 1100435
archrelease: copy trunk to community-staging-x86_64 Added: haskell-universe-base/repos/community-staging-x86_64/ haskell-universe-base/repos/community-staging-x86_64/PKGBUILD (from rev 1100434, haskell-universe-base/trunk/PKGBUILD) ----------+ PKGBUILD | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) Copied: haskell-universe-base/repos/community-staging-x86_64/PKGBUILD (from rev 1100434, haskell-universe-base/trunk/PKGBUILD) =================================================================== --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2022-01-11 11:19:59 UTC (rev 1100435) @@ -0,0 +1,45 @@ +# Maintainer: Felix Yan <felixonm...@archlinux.org> + +_hkgname=universe-base +pkgname=haskell-universe-base +pkgver=1.1.3 +pkgrel=15 +pkgdesc="A class for finite and recursively enumerable types." +url="https://github.com/dmwit/universe" +license=("BSD") +arch=('x86_64') +depends=('ghc-libs' 'haskell-tagged') +makedepends=('ghc' 'haskell-quickcheck') +source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz") +sha512sums=('a1aac7e078191001c9337026d2f3e69b6761a9ba7b7105273c5a216fbc11d021532a175584437b792c8a19ff3c17e0f8472dbaa58be921559548446068bd30ba') + +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 +} + +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 "$pkgdir"/usr/share/licenses/$pkgname/LICENSE + rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE +}