Date: Monday, March 14, 2022 @ 09:59:54 Author: felixonmars Revision: 1152194
archrelease: copy trunk to community-staging-x86_64 Added: haskell-configurator-pg/repos/community-staging-x86_64/ haskell-configurator-pg/repos/community-staging-x86_64/PKGBUILD (from rev 1152193, haskell-configurator-pg/trunk/PKGBUILD) ----------+ PKGBUILD | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) Copied: haskell-configurator-pg/repos/community-staging-x86_64/PKGBUILD (from rev 1152193, haskell-configurator-pg/trunk/PKGBUILD) =================================================================== --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2022-03-14 09:59:54 UTC (rev 1152194) @@ -0,0 +1,49 @@ +# Maintainer: Felix Yan <felixonm...@archlinux.org> +# Contributor: Arch Haskell Team <arch-hask...@haskell.org> + +_hkgname=configurator-pg +pkgname=haskell-configurator-pg +pkgver=0.2.5 +pkgrel=111 +pkgdesc="Reduced parser for configurator-ng config files" +url="https://github.com/robx/configurator-pg" +license=("BSD") +arch=('x86_64') +depends=('ghc-libs' 'haskell-megaparsec' 'haskell-protolude' 'haskell-scientific') +makedepends=('ghc' 'uusi' 'haskell-hunit' 'haskell-test-framework' 'haskell-test-framework-hunit') +source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz") +sha512sums=('ff22e1d20f609660d6dc91802fe3bd8ffa849e292b86a8c65ba9005b76d1b4cb795be6f6e4a8246467547ba6428cad087aad211d6c0e3fff2b3b1955ce7ea552') + +prepare() { + cd $_hkgname-$pkgver + uusi -u base -u megaparsec $_hkgname.cabal +} + +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 --ghc-option=-fllvm \ + -f-developer + 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" + install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE + rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE +}