Date: Tuesday, September 13, 2022 @ 21:24:57 Author: felixonmars Revision: 1301056
addpkg: haskell-xml-helpers 1.0.0-1 Added: haskell-xml-helpers/ haskell-xml-helpers/repos/ haskell-xml-helpers/trunk/ haskell-xml-helpers/trunk/PKGBUILD ----------+ PKGBUILD | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) Added: haskell-xml-helpers/trunk/PKGBUILD =================================================================== --- haskell-xml-helpers/trunk/PKGBUILD (rev 0) +++ haskell-xml-helpers/trunk/PKGBUILD 2022-09-13 21:24:57 UTC (rev 1301056) @@ -0,0 +1,45 @@ +# Maintainer: Felix Yan <[email protected]> + +_hkgname=xml-helpers +pkgname=haskell-xml-helpers +pkgver=1.0.0 +pkgrel=1 +pkgdesc="Some useful helper functions for the xml library." +url="http://github.com/acw/xml-helpers" +license=("BSD") +arch=('x86_64') +depends=('ghc-libs' 'haskell-xml') +makedepends=('ghc') +source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz") +sha256sums=('9b02c5bfd831e4e275745a3ca521a528a64ab0cf84022e17344873548f043367') + +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=-optl-Wl\,-z\,relro\,-z\,now \ + --ghc-option='-pie' + + 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" + install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/ + rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE +}
