Date: Friday, July 16, 2021 @ 07:24:37 Author: felixonmars Revision: 977568
addpkg: haskell-exact-pi 0.5.0.1-1 Added: haskell-exact-pi/ haskell-exact-pi/repos/ haskell-exact-pi/trunk/ haskell-exact-pi/trunk/PKGBUILD ----------+ PKGBUILD | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) Added: haskell-exact-pi/trunk/PKGBUILD =================================================================== --- haskell-exact-pi/trunk/PKGBUILD (rev 0) +++ haskell-exact-pi/trunk/PKGBUILD 2021-07-16 07:24:37 UTC (rev 977568) @@ -0,0 +1,51 @@ +# Maintainer: Felix Yan <felixonm...@archlinux.org> + +_hkgname=exact-pi +pkgname=haskell-exact-pi +pkgver=0.5.0.1 +pkgrel=1 +pkgdesc="Exact rational multiples of pi (and integer powers of pi)" +url="https://github.com/dmcclean/exact-pi/" +license=("MIT") +arch=('x86_64') +depends=('ghc-libs' 'haskell-numtype-dk') +makedepends=('ghc' 'uusi' 'haskell-quickcheck' 'haskell-tasty' 'haskell-tasty-hunit' + 'haskell-tasty-quickcheck') +source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz") +sha256sums=('5d8156ec8b044a36c2ac789b85bf65116be24304868fff472d033977ebcc1860') + +prepare() { + cd $_hkgname-$pkgver + uusi -u base -u QuickCheck -u tasty $_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 + 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 +} + +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 +} \ No newline at end of file