Date: Thursday, December 31, 2020 @ 22:26:23 Author: felixonmars Revision: 801134
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 801133, haskell-text-manipulate/trunk/PKGBUILD) ----------+ PKGBUILD | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) Copied: haskell-text-manipulate/repos/community-staging-x86_64/PKGBUILD (from rev 801133, haskell-text-manipulate/trunk/PKGBUILD) =================================================================== --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2020-12-31 22:26:23 UTC (rev 801134) @@ -0,0 +1,41 @@ +# Maintainer: Felix Yan <felixonm...@archlinux.org> + +_hkgname=text-manipulate +pkgname=haskell-text-manipulate +pkgver=0.3.0.0 +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=('754b35dcad14cc2c013763d6f0e633868987793e354159a56080e8f7426a8ecfe636e449f1fd976982bdeca77cf293b61e98afa69f188f1911ddafce9ae1eb57') + +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 +}