[arch-commits] Commit in (4 files)
Felix Yan
felixonmars at archlinux.org
Fri Apr 9 21:18:15 UTC 2021
Date: Friday, April 9, 2021 @ 21:18:14
Author: felixonmars
Revision: 915313
addpkg: haskell-ral 0.1-1
Added:
haskell-ral/
haskell-ral/repos/
haskell-ral/trunk/
haskell-ral/trunk/PKGBUILD
----------+
PKGBUILD | 46 ++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 46 insertions(+)
Added: haskell-ral/trunk/PKGBUILD
===================================================================
--- haskell-ral/trunk/PKGBUILD (rev 0)
+++ haskell-ral/trunk/PKGBUILD 2021-04-09 21:18:14 UTC (rev 915313)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+_hkgname=ral
+pkgname=haskell-ral
+pkgver=0.1
+pkgrel=1
+pkgdesc="Random access lists"
+url="https://github.com/phadej/vec"
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-quickcheck' 'haskell-adjunctions' 'haskell-bin' 'haskell-distributive'
+ 'haskell-fin' 'haskell-hashable' 'haskell-semigroupoids')
+makedepends=('ghc' 'uusi')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz")
+sha256sums=('048cf2b5b394229503bdd748c93cc19650b4223d01e11e954b373f7595c21241')
+
+prepare() {
+ cd $_hkgname-$pkgver
+ gen-setup
+ uusi -u base -u QuickCheck $_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
+}
+
+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"
+ rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}
More information about the arch-commits
mailing list