Date: Friday, August 26, 2022 @ 12:19:18 Author: felixonmars Revision: 1282018
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 1282017, haskell-text-manipulate/trunk/PKGBUILD) ----------+ PKGBUILD | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) Copied: haskell-text-manipulate/repos/community-staging-x86_64/PKGBUILD (from rev 1282017, haskell-text-manipulate/trunk/PKGBUILD) =================================================================== --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2022-08-26 12:19:18 UTC (rev 1282018) @@ -0,0 +1,46 @@ +# Maintainer: Felix Yan <felixonm...@archlinux.org> + +_hkgname=text-manipulate +pkgname=haskell-text-manipulate +pkgver=0.3.1.0 +pkgrel=22 +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' 'uusi' 'haskell-tasty' 'haskell-tasty-hunit') +source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) +sha512sums=('870104c5990eebc78f94eb40b4cfb80d42485004d72cdc87e9f3979ecfc6b39ddcff4c67a73d8b28065e7170568004f9cddc4ac00f76b0ebc128437df4206212') + +prepare() { + cd $_hkgname-$pkgver + gen-setup +} + +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 --enable-tests \ + --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid --ghc-option=-fllvm + 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 --show-details=direct +} + +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 +}