[arch-commits] Commit in haskell-unicode-show/repos (2 files)
Felix Yan
felixonmars at archlinux.org
Sat Aug 4 18:11:02 UTC 2018
Date: Saturday, August 4, 2018 @ 18:11:02
Author: felixonmars
Revision: 368130
archrelease: copy trunk to community-staging-x86_64
Added:
haskell-unicode-show/repos/community-staging-x86_64/
haskell-unicode-show/repos/community-staging-x86_64/PKGBUILD
(from rev 368129, haskell-unicode-show/trunk/PKGBUILD)
----------+
PKGBUILD | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
Copied: haskell-unicode-show/repos/community-staging-x86_64/PKGBUILD (from rev 368129, haskell-unicode-show/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2018-08-04 18:11:02 UTC (rev 368130)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Arch Haskell Team <arch-haskell at haskell.org>
+
+_hkgname=unicode-show
+pkgname=haskell-unicode-show
+pkgver=0.1.0.3
+pkgrel=1
+pkgdesc="Print and show in unicode"
+url="https://github.com/nushio3/unicode-show#readme"
+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=('bf6ac293c2181b5e8b9b3330d59445f32b9523dbfbdda1969e2e432cab89682a70a6d601f803854f485925fa35cee0150fd12e58e33554ef3217c96173543b87')
+
+build() {
+ cd "${srcdir}/${_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 "${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