[arch-commits] Commit in haskell-rvar/repos (2 files)
Felix Yan
felixonmars at gemini.archlinux.org
Thu Mar 24 00:13:39 UTC 2022
Date: Thursday, March 24, 2022 @ 00:13:39
Author: felixonmars
Revision: 1172597
archrelease: copy trunk to community-staging-x86_64
Added:
haskell-rvar/repos/community-staging-x86_64/
haskell-rvar/repos/community-staging-x86_64/PKGBUILD
(from rev 1172596, haskell-rvar/trunk/PKGBUILD)
----------+
PKGBUILD | 38 ++++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)
Copied: haskell-rvar/repos/community-staging-x86_64/PKGBUILD (from rev 1172596, haskell-rvar/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2022-03-24 00:13:39 UTC (rev 1172597)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+_hkgname=rvar
+pkgname=haskell-rvar
+pkgver=0.3.0.0
+pkgrel=9
+pkgdesc="Random Variables"
+url="https://github.com/mokus0/random-fu"
+license=("custom:PublicDomain")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-monadprompt' 'haskell-random')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz")
+sha256sums=('562ebf8def09424549cf33765449a8d8becd39eb6d8f8bd094d32145a80543d2')
+
+build() {
+ cd $_hkgname-$pkgver
+
+ runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \
+ --prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir=$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
+}
+
+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"
+}
More information about the arch-commits
mailing list