Date: Sunday, May 20, 2018 @ 16:19:03 Author: felixonmars Revision: 325417
addpkg: haskell-prettyclass 1.0.0.0-1 Added: haskell-prettyclass/ haskell-prettyclass/repos/ haskell-prettyclass/trunk/ haskell-prettyclass/trunk/PKGBUILD ----------+ PKGBUILD | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) Added: haskell-prettyclass/trunk/PKGBUILD =================================================================== --- haskell-prettyclass/trunk/PKGBUILD (rev 0) +++ haskell-prettyclass/trunk/PKGBUILD 2018-05-20 16:19:03 UTC (rev 325417) @@ -0,0 +1,36 @@ +# $Id$ +# Maintainer: Felix Yan <[email protected]> + +_hkgname=prettyclass +pkgname=haskell-prettyclass +pkgver=1.0.0.0 +pkgrel=1 +pkgdesc="Pretty printing class similar to Show." +url="https://github.com/JustusAdam/prettyclass" +license=('custom:BSD3') +arch=('x86_64') +depends=('ghc-libs') +makedepends=('ghc') +source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) +sha512sums=('f0785e7780f71ee0f8f6b6ca5db6a82f030f75b34f618ff9ee0025032516114769f4cd4e6094b5fefd13e645a7eece9d87b82c2d4c144dddf5093bc2c600af4a') + +build() { + cd $_hkgname-$pkgver + + runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \ + --prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ + --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}" +} Property changes on: haskell-prettyclass/trunk/PKGBUILD ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property
