Date: Saturday, June 11, 2022 @ 20:08:40 Author: felixonmars Revision: 1234663
archrelease: copy trunk to community-staging-x86_64 Added: haskell-th-expand-syns/repos/community-staging-x86_64/ haskell-th-expand-syns/repos/community-staging-x86_64/PKGBUILD (from rev 1234662, haskell-th-expand-syns/trunk/PKGBUILD) ----------+ PKGBUILD | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) Copied: haskell-th-expand-syns/repos/community-staging-x86_64/PKGBUILD (from rev 1234662, haskell-th-expand-syns/trunk/PKGBUILD) =================================================================== --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2022-06-11 20:08:40 UTC (rev 1234663) @@ -0,0 +1,42 @@ +# Maintainer: Felix Yan <felixonm...@archlinux.org> + +_hkgname=th-expand-syns +pkgname=haskell-th-expand-syns +pkgver=0.4.9.0 +pkgrel=33 +pkgdesc="Expands type synonyms in Template Haskell ASTs" +url="https://hackage.haskell.org/package/th-expand-syns" +license=('BSD') +arch=('x86_64') +depends=('ghc-libs' 'haskell-syb' 'haskell-th-abstraction') +makedepends=('ghc') +source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) +sha512sums=('ff20a81e37bbefa246c6c1c596f69f83f1d2f7fdbb217556d42fff1cedbf064b65cc6e005806022221b4b6bc5e5f1dcda75ca9b51efcff6d14bfe0e6b658485d') + +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" + install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE + rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE +}