Date: Tuesday, February 2, 2021 @ 18:41:06 Author: felixonmars Revision: 841341
archrelease: copy trunk to community-staging-x86_64 Added: haskell-say/repos/community-staging-x86_64/ haskell-say/repos/community-staging-x86_64/PKGBUILD (from rev 841340, haskell-say/trunk/PKGBUILD) ----------+ PKGBUILD | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) Copied: haskell-say/repos/community-staging-x86_64/PKGBUILD (from rev 841340, haskell-say/trunk/PKGBUILD) =================================================================== --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2021-02-02 18:41:06 UTC (rev 841341) @@ -0,0 +1,43 @@ +# Maintainer: Jelle van der Waa <je...@archlinux.org> + +_hkgname=say +pkgname=haskell-say +pkgver=0.1.0.1 +pkgrel=77 +pkgdesc='Send textual messages to a Handle in a thread-friendly way' +arch=(x86_64) +url="https://hackage.haskell.org/package/$_hkgname" +license=(MIT) +depends=(ghc-libs) +checkdepends=(haskell-hspec haskell-unliftio) +makedepends=(ghc) +source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz") +sha512sums=('3de9f6b473a3b4403624c3f6aeac3703a5e8b6cfae82578f7a49a81defa9fa64295cd315664d02fbab70646694d34415d638b5b52424d167d44e93b34a917604') + +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" + install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE + rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE +} + +# vim: ts=2 sw=2 et: