Date: Friday, January 18, 2019 @ 12:36:34 Author: felixonmars Revision: 424084
addpkg: haskell-sop-core 0.4.0.0-1 Added: haskell-sop-core/ haskell-sop-core/repos/ haskell-sop-core/trunk/ haskell-sop-core/trunk/PKGBUILD ----------+ PKGBUILD | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) Added: haskell-sop-core/trunk/PKGBUILD =================================================================== --- haskell-sop-core/trunk/PKGBUILD (rev 0) +++ haskell-sop-core/trunk/PKGBUILD 2019-01-18 12:36:34 UTC (rev 424084) @@ -0,0 +1,37 @@ +# Maintainer: Felix Yan <[email protected]> + +_hkgname=sop-core +pkgname=haskell-sop-core +pkgver=0.4.0.0 +pkgrel=1 +pkgdesc="True Sums of Products" +url="https://github.com/well-typed/generics-sop" +license=('BSD') +arch=('x86_64') +depends=('ghc-libs') +makedepends=('ghc') +source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) +sha512sums=('db12039dc17b954d171907c68165806027468bcde2dff5a7f6c43b2fe1afe1dfdc1e947cad9d124bb2f3423a53f5f2237ed71cf69a4a47b5be7d1492b043ce61') + +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 + 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 +} + +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" +}
