[arch-commits] Commit in haskell-mwc-random/repos (2 files)
Felix Yan
felixonmars at archlinux.org
Sun Aug 30 22:30:22 UTC 2020
Date: Sunday, August 30, 2020 @ 22:30:22
Author: felixonmars
Revision: 693253
archrelease: copy trunk to community-staging-x86_64
Added:
haskell-mwc-random/repos/community-staging-x86_64/
haskell-mwc-random/repos/community-staging-x86_64/PKGBUILD
(from rev 693252, haskell-mwc-random/trunk/PKGBUILD)
----------+
PKGBUILD | 38 ++++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)
Copied: haskell-mwc-random/repos/community-staging-x86_64/PKGBUILD (from rev 693252, haskell-mwc-random/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2020-08-30 22:30:22 UTC (rev 693253)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Arch Haskell Team <arch-haskell at haskell.org>
+
+_hkgname=mwc-random
+pkgname=haskell-mwc-random
+pkgver=0.14.0.0
+pkgrel=66
+pkgdesc="Fast, high quality pseudo random number generation"
+url="https://github.com/bos/mwc-random"
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-math-functions" "haskell-primitive" "haskell-vector")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz")
+sha512sums=('bb262d6f4a37d91e4c0667ec5140894ed36bf3ef4b90e487f4d689a6bc4eddd09dcdc3c8b75013124908ca1642e990c3e074fb728acc1b36f63b3db66528301d')
+
+build() {
+ cd $_hkgname-$pkgver
+
+ runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \
+ --prefix=/usr --docdir=/usr/share/doc/$pkgname \
+ --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+ 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
+}
+
+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
+}
More information about the arch-commits
mailing list