Date: Wednesday, July 17, 2019 @ 19:58:23 Author: felixonmars Revision: 490596
archrelease: copy trunk to community-staging-x86_64 Added: haskell-foundation/repos/community-staging-x86_64/ haskell-foundation/repos/community-staging-x86_64/PKGBUILD (from rev 490595, haskell-foundation/trunk/PKGBUILD) ----------+ PKGBUILD | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) Copied: haskell-foundation/repos/community-staging-x86_64/PKGBUILD (from rev 490595, haskell-foundation/trunk/PKGBUILD) =================================================================== --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2019-07-17 19:58:23 UTC (rev 490596) @@ -0,0 +1,49 @@ +# Maintainer: Felix Yan <felixonm...@archlinux.org> +# Contributor: Thomas Dziedzic <gos...@gmail.com> + +_hkgname=foundation +pkgname=haskell-foundation +pkgver=0.0.24 +pkgrel=2 +pkgdesc="Alternative prelude with batteries and no dependencies" +url="https://github.com/haskell-foundation/foundation" +license=('BSD') +arch=('x86_64') +depends=('ghc-libs' 'haskell-basement') +makedepends=('ghc' 'haskell-doctest') +source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz") +sha512sums=('9973e77ee9a5827c2ef3efaee3180fac57d4c3754b9f9978cf6b7416cce8f9b8b006bd9dc665934ba0cb89bf7e9149861d9a61c0126eb71eb3533caea3839db6') + +prepare() { + cd $_hkgname-$pkgver + echo -e "import Distribution.Simple\nmain = defaultMain" > Setup.hs +} + +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 \ + -f-experimental -f-minimal-deps -f-doctest -flinktest -f-bounds-check + 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" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" + rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE" +}