[arch-commits] Commit in haskell-parser-combinators/repos (2 files)
Felix Yan
felixonmars at archlinux.org
Thu Apr 23 14:01:55 UTC 2020
Date: Thursday, April 23, 2020 @ 14:01:54
Author: felixonmars
Revision: 618171
archrelease: copy trunk to community-staging-x86_64
Added:
haskell-parser-combinators/repos/community-staging-x86_64/
haskell-parser-combinators/repos/community-staging-x86_64/PKGBUILD
(from rev 618170, haskell-parser-combinators/trunk/PKGBUILD)
----------+
PKGBUILD | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
Copied: haskell-parser-combinators/repos/community-staging-x86_64/PKGBUILD (from rev 618170, haskell-parser-combinators/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2020-04-23 14:01:54 UTC (rev 618171)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Arch Haskell Team <arch-haskell at haskell.org>
+
+_hkgname=parser-combinators
+pkgname=haskell-parser-combinators
+pkgver=1.2.1
+pkgrel=5
+pkgdesc="Lightweight package providing commonly useful parser combinators"
+url="https://github.com/mrkkrp/parser-combinators"
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz")
+sha512sums=('f40df30e60713909cab46473c04889842da2a6326b1c3d78e2cf40ca60687a3e96a5f3c6fca665d1a5e1da9add382cc35cbd331cb6c9afe8580ce7d18fe4dc8a')
+
+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 \
+ -f-dev
+ 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.md "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.md
+ rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE.md
+}
More information about the arch-commits
mailing list