[arch-commits] Commit in haskell-storable-record/repos (2 files)
Felix Yan
felixonmars at gemini.archlinux.org
Sat May 14 13:02:16 UTC 2022
Date: Saturday, May 14, 2022 @ 13:02:16
Author: felixonmars
Revision: 1204379
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 1204378, haskell-storable-record/trunk/PKGBUILD)
----------+
PKGBUILD | 44 ++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 44 insertions(+)
Copied: haskell-storable-record/repos/community-staging-x86_64/PKGBUILD (from rev 1204378, haskell-storable-record/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2022-05-14 13:02:16 UTC (rev 1204379)
@@ -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.6
+pkgrel=45
+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-quickcheck' 'haskell-utility-ht')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz")
+sha512sums=('841e8d01529bbeda16bf6444cb43027e31a25bc66afb1c8f2237c4ba021fa5355bdfa373ea101abf0f4c82d6cec4f00db72f46c4b50ec74117fc7b4ff5a7ce99')
+
+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 --datasubdir=$pkgname \
+ --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid --ghc-option=-fllvm \
+ -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