[arch-commits] Commit in haskell-base16-bytestring/repos (2 files)

Felix Yan felixonmars at archlinux.org
Sun Dec 20 11:51:37 UTC 2020


    Date: Sunday, December 20, 2020 @ 11:51:36
  Author: felixonmars
Revision: 780386

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-base16-bytestring/repos/community-staging-x86_64/
  haskell-base16-bytestring/repos/community-staging-x86_64/PKGBUILD
    (from rev 780385, haskell-base16-bytestring/trunk/PKGBUILD)

----------+
 PKGBUILD |   44 ++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 44 insertions(+)

Copied: haskell-base16-bytestring/repos/community-staging-x86_64/PKGBUILD (from rev 780385, haskell-base16-bytestring/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2020-12-20 11:51:36 UTC (rev 780386)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Arch Haskell Team <arch-haskell at haskell.org>
+
+_hkgname=base16-bytestring
+pkgname=haskell-base16-bytestring
+pkgver=1.0.0.0
+pkgrel=3
+pkgdesc="RFC 4648-compliant Base16 encodings for ByteStrings"
+url="https://github.com/haskell/base16-bytestring"
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc' 'haskell-hunit' 'haskell-quickcheck' 'haskell-test-framework'
+             'haskell-test-framework-hunit' 'haskell-test-framework-quickcheck2')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz")
+sha512sums=('d18128ad48efdd5d4e024ab84983dc671cd4522cf2971438b2ec87f63a9538ad7a551554645c3ff7b860ee9878d159e748e7026fd76285c911325a119a329fdc')
+
+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