[arch-commits] Commit in haskell-wl-pprint-annotated/repos (2 files)
Felix Yan
felixonmars at archlinux.org
Thu Dec 28 16:30:36 UTC 2017
Date: Thursday, December 28, 2017 @ 16:30:30
Author: felixonmars
Revision: 276527
archrelease: copy trunk to community-staging-x86_64
Added:
haskell-wl-pprint-annotated/repos/community-staging-x86_64/
haskell-wl-pprint-annotated/repos/community-staging-x86_64/PKGBUILD
(from rev 276526, haskell-wl-pprint-annotated/trunk/PKGBUILD)
----------+
PKGBUILD | 44 ++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 44 insertions(+)
Copied: haskell-wl-pprint-annotated/repos/community-staging-x86_64/PKGBUILD (from rev 276526, haskell-wl-pprint-annotated/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2017-12-28 16:30:30 UTC (rev 276527)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Arch Haskell Team <arch-haskell at haskell.org>
+
+_hkgname=wl-pprint-annotated
+pkgname=haskell-wl-pprint-annotated
+pkgver=0.1.0.0
+pkgrel=2
+pkgdesc="Wadler/Leijen pretty printer with annotations and slightly modernized API"
+url="https://github.com/minad/wl-pprint-annotated"
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-text')
+makedepends=('ghc' 'haskell-tasty' 'haskell-tasty-hunit')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz")
+sha512sums=('b6e5a9e58deea2c877df8cba8ade09fb9a8df2d62b10f92981b7f174d660659c8cf03c1fd48004919d5c6d1ec5c820e913c2f332498cfae1f62c2c7092c65a3b')
+
+build() {
+ cd "${srcdir}/${_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
+}
+
+check() {
+ cd $_hkgname-$pkgver
+ runhaskell Setup test
+}
+
+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