[arch-commits] Commit in haskell-newtype-generics/repos (2 files)
Felix Yan
felixonmars at gemini.archlinux.org
Mon Dec 27 21:48:08 UTC 2021
Date: Monday, December 27, 2021 @ 21:48:08
Author: felixonmars
Revision: 1084365
archrelease: copy trunk to community-staging-x86_64
Added:
haskell-newtype-generics/repos/community-staging-x86_64/
haskell-newtype-generics/repos/community-staging-x86_64/PKGBUILD
(from rev 1084364, haskell-newtype-generics/trunk/PKGBUILD)
----------+
PKGBUILD | 42 ++++++++++++++++++++++++++++++++++++++++++
1 file changed, 42 insertions(+)
Copied: haskell-newtype-generics/repos/community-staging-x86_64/PKGBUILD (from rev 1084364, haskell-newtype-generics/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2021-12-27 21:48:08 UTC (rev 1084365)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+_hkgname=newtype-generics
+pkgname=haskell-newtype-generics
+pkgver=0.6.1
+pkgrel=8
+pkgdesc="A typeclass and set of functions for working with newtypes"
+url="https://github.com/sjakobi/newtype-generics"
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc' 'haskell-hspec')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('3e746c4e472ae50d9f0114f0b8a84745ae43a2d94e6602f3c1918bccfc3b00a2891696d44f96dda57ea366b0a2c97388685d186de525db27c7ada38a465cdb4e')
+
+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=-fllvm
+ 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 --show-details=direct
+}
+
+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