[arch-commits] Commit in haskell-pretty-show/repos (2 files)
Felix Yan
felixonmars at archlinux.org
Thu Sep 27 14:46:04 UTC 2018
Date: Thursday, September 27, 2018 @ 14:46:04
Author: felixonmars
Revision: 386394
archrelease: copy trunk to community-staging-x86_64
Added:
haskell-pretty-show/repos/community-staging-x86_64/
haskell-pretty-show/repos/community-staging-x86_64/PKGBUILD
(from rev 386393, haskell-pretty-show/trunk/PKGBUILD)
----------+
PKGBUILD | 37 +++++++++++++++++++++++++++++++++++++
1 file changed, 37 insertions(+)
Copied: haskell-pretty-show/repos/community-staging-x86_64/PKGBUILD (from rev 386393, haskell-pretty-show/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2018-09-27 14:46:04 UTC (rev 386394)
@@ -0,0 +1,37 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+_hkgname=pretty-show
+pkgname=haskell-pretty-show
+pkgver=1.8.2
+pkgrel=2
+pkgdesc='Tools for working with derived `Show` instances and generic inspection of values.'
+url="http://wiki.github.com/yav/pretty-show"
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-lexer')
+makedepends=('ghc' 'happy')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz")
+sha512sums=('227c809a0e663427ba3e3ee32fe554c7f53a86ce567a0874f73be5f15f4a6e742c53b75960b944bd9a50b7be7d1a90fd34d5aa4119a6076661f51d6ef758210d')
+
+build() {
+ cd "${srcdir}/${_hkgname}-${pkgver}"
+
+ runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \
+ --prefix=/usr --docdir="/usr/share/doc/${pkgname}" --datasubdir="$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 "${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"
+ runhaskell Setup copy --destdir="${pkgdir}"
+ install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+ rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}
More information about the arch-commits
mailing list