[arch-commits] Commit in haskell-random-bytestring/repos (2 files)

Felix Yan felixonmars at gemini.archlinux.org
Thu Jan 6 21:11:16 UTC 2022


    Date: Thursday, January 6, 2022 @ 21:11:16
  Author: felixonmars
Revision: 1094888

archrelease: copy trunk to community-x86_64

Added:
  haskell-random-bytestring/repos/community-x86_64/
  haskell-random-bytestring/repos/community-x86_64/PKGBUILD
    (from rev 1094887, haskell-random-bytestring/trunk/PKGBUILD)

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

Copied: haskell-random-bytestring/repos/community-x86_64/PKGBUILD (from rev 1094887, haskell-random-bytestring/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2022-01-06 21:11:16 UTC (rev 1094888)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+_hkgname=random-bytestring
+pkgname=haskell-random-bytestring
+pkgver=0.1.4
+pkgrel=1
+pkgdesc="Efficient generation of random bytestrings"
+url="https://www.github.com/larskuhtz/random-bytestring"
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-mwc-random' 'haskell-pcg-random')
+makedepends=('ghc' 'uusi')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz")
+sha256sums=('920c6feea2e360a96275993191cc89e72784a3787bf4ad7d53eff58e5f209638')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  gen-setup
+}
+
+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
+}
+
+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
+}



More information about the arch-commits mailing list