[arch-commits] Commit in haskell-text-manipulate/repos (2 files)
Felix Yan
felixonmars at archlinux.org
Thu Aug 13 17:27:57 UTC 2020
Date: Thursday, August 13, 2020 @ 17:27:56
Author: felixonmars
Revision: 677751
archrelease: copy trunk to community-staging-x86_64
Added:
haskell-text-manipulate/repos/community-staging-x86_64/
haskell-text-manipulate/repos/community-staging-x86_64/PKGBUILD
(from rev 677750, haskell-text-manipulate/trunk/PKGBUILD)
----------+
PKGBUILD | 41 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 41 insertions(+)
Copied: haskell-text-manipulate/repos/community-staging-x86_64/PKGBUILD (from rev 677750, haskell-text-manipulate/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2020-08-13 17:27:56 UTC (rev 677751)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+_hkgname=text-manipulate
+pkgname=haskell-text-manipulate
+pkgver=0.2.0.1
+pkgrel=11
+pkgdesc="Case conversion, word boundary manipulation, and textual subjugation"
+url="https://github.com/brendanhay/text-manipulate"
+license=('MPL2')
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc' 'haskell-tasty' 'haskell-tasty-hunit')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('16b01c5f5e6acc484a521f8fd016c165dd8e69b9d4a1a9b329e7f7671c2bd65afa010095616c0ebcd74b7d00a46c8be3c7a18cc64295ce5234ce7a0ffed77c8c')
+
+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"
+ rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}
More information about the arch-commits
mailing list