[arch-commits] Commit in haskell-storable-record/repos (2 files)

Felix Yan felixonmars at archlinux.org
Wed Jan 8 23:53:29 UTC 2020


    Date: Wednesday, January 8, 2020 @ 23:53:28
  Author: felixonmars
Revision: 550900

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-storable-record/repos/community-staging-x86_64/
  haskell-storable-record/repos/community-staging-x86_64/PKGBUILD
    (from rev 550899, haskell-storable-record/trunk/PKGBUILD)

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

Copied: haskell-storable-record/repos/community-staging-x86_64/PKGBUILD (from rev 550899, haskell-storable-record/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2020-01-08 23:53:28 UTC (rev 550900)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Arch Haskell Team <arch-haskell at haskell.org>
+
+_hkgname=storable-record
+pkgname=haskell-storable-record
+pkgver=0.0.4
+pkgrel=9
+pkgdesc="Elegant definition of Storable instances for records"
+url="http://code.haskell.org/~thielema/storable-record/"
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-utility-ht')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz")
+sha512sums=('a49109447f63b21c2aece7e5d51119d30a7d186d415148c5f92aa8e989f47247ba539090bdbcddf1337a62a55d45dc5c452bfc58490c8f49a52707228bbba887')
+
+prepare() {
+    cd $_hkgname-$pkgver
+    sed -i '/semigroups/d' $_hkgname.cabal
+}
+
+build() {
+    cd $_hkgname-$pkgver
+
+    runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \
+        --prefix=/usr --docdir=/usr/share/doc/$pkgname \
+        --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+            -fsplitbase -f-buildtests
+    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
+}
+
+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