[arch-commits] Commit in (4 files)

Felix Yan felixonmars at archlinux.org
Tue Mar 31 14:02:47 UTC 2020


    Date: Tuesday, March 31, 2020 @ 14:02:47
  Author: felixonmars
Revision: 608051

addpkg: haskell-text-manipulate 0.2.0.1-1

Added:
  haskell-text-manipulate/
  haskell-text-manipulate/repos/
  haskell-text-manipulate/trunk/
  haskell-text-manipulate/trunk/PKGBUILD

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

Added: haskell-text-manipulate/trunk/PKGBUILD
===================================================================
--- haskell-text-manipulate/trunk/PKGBUILD	                        (rev 0)
+++ haskell-text-manipulate/trunk/PKGBUILD	2020-03-31 14:02:47 UTC (rev 608051)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+_hkgname=text-manipulate
+pkgname=haskell-text-manipulate
+pkgver=0.2.0.1
+pkgrel=1
+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
+    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