[arch-commits] Commit in haskell-http-client/repos (2 files)
Felix Yan
felixonmars at archlinux.org
Fri Dec 29 00:51:16 UTC 2017
Date: Friday, December 29, 2017 @ 00:51:16
Author: felixonmars
Revision: 276704
archrelease: copy trunk to community-staging-x86_64
Added:
haskell-http-client/repos/community-staging-x86_64/
haskell-http-client/repos/community-staging-x86_64/PKGBUILD
(from rev 276703, haskell-http-client/trunk/PKGBUILD)
----------+
PKGBUILD | 42 ++++++++++++++++++++++++++++++++++++++++++
1 file changed, 42 insertions(+)
Copied: haskell-http-client/repos/community-staging-x86_64/PKGBUILD (from rev 276703, haskell-http-client/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2017-12-29 00:51:16 UTC (rev 276704)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Arch Haskell Team <arch-haskell at haskell.org>
+
+_hkgname=http-client
+pkgname=haskell-http-client
+pkgver=0.5.7.1
+pkgrel=3
+pkgdesc="An HTTP client engine"
+url="https://github.com/snoyberg/http-client"
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-base64-bytestring" "haskell-blaze-builder" "haskell-case-insensitive"
+ "haskell-cookie" "haskell-exceptions" "haskell-http-types" "haskell-mime-types"
+ "haskell-network" "haskell-network-uri" "haskell-random" "haskell-streaming-commons"
+ "haskell-text")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz")
+sha512sums=('d4b6089f25bd7342f9873ce767e2c74036e55adf2aa163fc3ffa3895d57fff14af6d10c15439d7ae62e3c2772641b092226ca4b24e57a9f9ff9d4318fe6163b6')
+
+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 -fnetwork-uri
+ 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