[arch-commits] Commit in haskell-non-negative/repos (2 files)
Felix Yan
felixonmars at archlinux.org
Tue Jan 23 06:39:07 UTC 2018
Date: Tuesday, January 23, 2018 @ 06:39:05
Author: felixonmars
Revision: 285383
archrelease: copy trunk to community-staging-x86_64
Added:
haskell-non-negative/repos/community-staging-x86_64/
haskell-non-negative/repos/community-staging-x86_64/PKGBUILD
(from rev 285382, haskell-non-negative/trunk/PKGBUILD)
----------+
PKGBUILD | 44 ++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 44 insertions(+)
Copied: haskell-non-negative/repos/community-staging-x86_64/PKGBUILD (from rev 285382, haskell-non-negative/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2018-01-23 06:39:05 UTC (rev 285383)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Arch Haskell Team <arch-haskell at haskell.org>
+
+_hkgname=non-negative
+pkgname=haskell-non-negative
+pkgver=0.1.1.2
+pkgrel=2
+pkgdesc="Non-negative numbers"
+url="http://code.haskell.org/~thielema/non-negative/"
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-quickcheck' 'haskell-utility-ht')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz")
+sha512sums=('2c5c36efe3f819d8cc386f8c71e1dbfdd382c6383ed26050ce9191f6c6e6f29996d7b0c19bae97fa4459a4311f7d8472f324ae53d61efb0fea248f76e7f5b775')
+
+build() {
+ cd "${srcdir}/${_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 \
+ -fsplitbase
+ 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
+}
+
+check() {
+ cd $_hkgname-$pkgver
+ runhaskell Setup test
+}
+
+package() {
+ cd "${srcdir}/${_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