Date: Sunday, August 6, 2017 @ 16:44:27 Author: felixonmars Revision: 249053
addpkg: haskell-binary-orphans 0.1.7.0-1 Added: haskell-binary-orphans/ haskell-binary-orphans/repos/ haskell-binary-orphans/trunk/ haskell-binary-orphans/trunk/PKGBUILD ----------+ PKGBUILD | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) Added: haskell-binary-orphans/trunk/PKGBUILD =================================================================== --- haskell-binary-orphans/trunk/PKGBUILD (rev 0) +++ haskell-binary-orphans/trunk/PKGBUILD 2017-08-06 16:44:27 UTC (rev 249053) @@ -0,0 +1,46 @@ +# $Id$ +# Maintainer: Felix Yan <[email protected]> +# Contributor: Arch Haskell Team <[email protected]> + +_hkgname=binary-orphans +pkgname=haskell-binary-orphans +pkgver=0.1.7.0 +pkgrel=1 +pkgdesc="Orphan instances for binary" +url="https://github.com/phadej/binary-orphans" +license=("custom:BSD3") +arch=('i686' 'x86_64') +depends=('ghc' "haskell-aeson" "haskell-case-insensitive" "haskell-hashable" "haskell-scientific" + "haskell-tagged" "haskell-text" "haskell-unordered-containers" "haskell-vector" + "haskell-text-binary" "haskell-vector-binary-instances") +source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz") +sha512sums=('5c79e9981afd13bcceced9c046f4b0551f40f90469f2ff018ec6b8cbe967e115dd8817788ea496bbce03f584620c164ef8059cce3ab84b154115e773e2fb5e94') + +build() { + cd "${srcdir}/${_hkgname}-${pkgver}" + + runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \ + --prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ + --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid + runhaskell Setup build + runhaskell Setup haddock --hoogle --html + 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 "${srcdir}/${_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" + install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries" + ln -s "/usr/share/doc/${pkgname}/html" "${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}" + runhaskell Setup copy --destdir="${pkgdir}" + install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" + rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE" + + # Remove static libs + find "$pkgdir"/usr/lib -name "*.a" -delete +} Property changes on: haskell-binary-orphans/trunk/PKGBUILD ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property
