[arch-commits] Commit in haskell-newtype-generics/repos (2 files)
Felix Yan
felixonmars at archlinux.org
Thu May 13 17:19:05 UTC 2021
Date: Thursday, May 13, 2021 @ 17:19:05
Author: felixonmars
Revision: 933329
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 933328, haskell-newtype-generics/trunk/PKGBUILD)
----------+
PKGBUILD | 42 ++++++++++++++++++++++++++++++++++++++++++
1 file changed, 42 insertions(+)
Copied: haskell-newtype-generics/repos/community-staging-x86_64/PKGBUILD (from rev 933328, haskell-newtype-generics/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2021-05-13 17:19:05 UTC (rev 933329)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+_hkgname=newtype-generics
+pkgname=haskell-newtype-generics
+pkgver=0.6
+pkgrel=25
+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=('c8d5897fc1e8113f3016487a95ad467fb277a8a10436ad73ca7ee93c400eea04ab49a5c6aa24a1dd509d046cc329d26e0c21f39863b34f51e31db416e6804457')
+
+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 --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