[arch-commits] Commit in haskell-exact-pi/repos (2 files)

Felix Yan felixonmars at gemini.archlinux.org
Sat Aug 28 21:12:01 UTC 2021


    Date: Saturday, August 28, 2021 @ 21:12:01
  Author: felixonmars
Revision: 1007885

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-exact-pi/repos/community-staging-x86_64/
  haskell-exact-pi/repos/community-staging-x86_64/PKGBUILD
    (from rev 1007884, haskell-exact-pi/trunk/PKGBUILD)

----------+
 PKGBUILD |   51 +++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 51 insertions(+)

Copied: haskell-exact-pi/repos/community-staging-x86_64/PKGBUILD (from rev 1007884, haskell-exact-pi/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2021-08-28 21:12:01 UTC (rev 1007885)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+_hkgname=exact-pi
+pkgname=haskell-exact-pi
+pkgver=0.5.0.1
+pkgrel=9
+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 $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
+}
\ No newline at end of file



More information about the arch-commits mailing list