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

Felix Yan felixonmars at archlinux.org
Mon Jun 7 07:27:47 UTC 2021


    Date: Monday, June 7, 2021 @ 07:27:47
  Author: felixonmars
Revision: 957098

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 957097, haskell-storable-record/trunk/PKGBUILD)

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

Copied: haskell-storable-record/repos/community-staging-x86_64/PKGBUILD (from rev 957097, haskell-storable-record/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2021-06-07 07:27:47 UTC (rev 957098)
@@ -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.5
+pkgrel=24
+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=('6c9a71dd4470afc4693026603a7288e6bdff008995cf89e3d6b8f509c515e8b7aa8561e2f8f4b887c622599a7790075c67f5f3c219c89306555bec6a8ab69061')
+
+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 $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
+}
+
+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