Date: Thursday, March 17, 2022 @ 23:36:35 Author: felixonmars Revision: 1157464
archrelease: copy trunk to community-staging-x86_64 Added: haskell-splitmix/repos/community-staging-x86_64/ haskell-splitmix/repos/community-staging-x86_64/PKGBUILD (from rev 1157463, haskell-splitmix/trunk/PKGBUILD) ----------+ PKGBUILD | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) Copied: haskell-splitmix/repos/community-staging-x86_64/PKGBUILD (from rev 1157463, haskell-splitmix/trunk/PKGBUILD) =================================================================== --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2022-03-17 23:36:35 UTC (rev 1157464) @@ -0,0 +1,50 @@ +# Maintainer: Felix Yan <felixonm...@archlinux.org> + +_hkgname=splitmix +pkgname=haskell-splitmix +pkgver=0.1.0.4 +pkgrel=41 +pkgdesc="Fast Splittable PRNG" +url="https://github.com/haskellari/splitmix" +license=('BSD') +arch=('x86_64') +depends=('ghc-libs') +makedepends=('ghc' 'testu01' 'haskell-async' 'haskell-base-compat' 'haskell-base-compat-batteries' + 'haskell-hunit' 'haskell-math-functions' 'haskell-test-framework' + 'haskell-test-framework-hunit' 'haskell-tf-random' 'haskell-vector') +source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) +sha512sums=('9a5cbe8100d44fadeb8bf009b03b1770d6b86ef0f71d625e3fb909881d599f4122833647c13a78152369e2744327d5c3f8b552fdc6a47d2705891ca6331c268e') + +build() { + cd $_hkgname-$pkgver + + if (( CHECKFUNC )); then + _opts=('--enable-tests') + else + _opts=('--disable-tests') + fi + + runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \ + --prefix=/usr --docdir=/usr/share/doc/$pkgname "${_opts[@]}" \ + --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 +}