Date: Sunday, August 16, 2020 @ 15:00:27 Author: felixonmars Revision: 681585
archrelease: copy trunk to community-staging-x86_64 Added: haskell-gi-base/repos/community-staging-x86_64/ haskell-gi-base/repos/community-staging-x86_64/PKGBUILD (from rev 681583, haskell-gi-base/trunk/PKGBUILD) ----------+ PKGBUILD | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) Copied: haskell-gi-base/repos/community-staging-x86_64/PKGBUILD (from rev 681583, haskell-gi-base/trunk/PKGBUILD) =================================================================== --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2020-08-16 15:00:27 UTC (rev 681585) @@ -0,0 +1,42 @@ +# Maintainer: Felix Yan <felixonm...@archlinux.org> +# Contributor: Arch Haskell Team <arch-hask...@haskell.org> + +_hkgname=haskell-gi-base +pkgname=haskell-gi-base +pkgver=0.24.1 +pkgrel=1 +pkgdesc="Foundation for libraries generated by haskell-gi" +url="https://github.com/haskell-suite/haskell-gi" +license=("LGPL2") +arch=('x86_64') +depends=('ghc-libs' 'glib2') +makedepends=('ghc') +source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz") +sha512sums=('3ff9c9c8f0ff5dcf49d9b684827a1cbf8cb21fb083ac44d5a2a724440d0e81b7d80cdcc05f23ab944a7ace534f196faf6e10eabdee4cf96b1e9314fc22d41531') + +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 +}