[arch-commits] Commit in haskell-spoon/repos (2 files)
Felix Yan
felixonmars at archlinux.org
Mon Aug 17 07:55:01 UTC 2020
Date: Monday, August 17, 2020 @ 07:55:00
Author: felixonmars
Revision: 682484
archrelease: copy trunk to community-staging-x86_64
Added:
haskell-spoon/repos/community-staging-x86_64/
haskell-spoon/repos/community-staging-x86_64/PKGBUILD
(from rev 682483, haskell-spoon/trunk/PKGBUILD)
----------+
PKGBUILD | 42 ++++++++++++++++++++++++++++++++++++++++++
1 file changed, 42 insertions(+)
Copied: haskell-spoon/repos/community-staging-x86_64/PKGBUILD (from rev 682483, haskell-spoon/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2020-08-17 07:55:00 UTC (rev 682484)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+_hkgname=spoon
+pkgname=haskell-spoon
+pkgver=0.3.1
+pkgrel=3
+pkgdesc="Catch errors thrown from pure computations"
+url="https://hackage.haskell.org/package/spoon"
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('705d48849a6b988474c3f0a14ac9fd12f821db97ebaa0c8afef7e937ec4f27e841d4645bc473245d72235f966aa97581857a61b6a48709fdb4bff8ec05c638f4')
+
+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
+ 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
+}
+
+check() {
+ cd $_hkgname-$pkgver
+ runhaskell Setup test
+}
+
+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