[arch-commits] Commit in haskell-httpd-shed/repos (2 files)
Felix Yan
felixonmars at archlinux.org
Thu May 9 00:10:26 UTC 2019
Date: Thursday, May 9, 2019 @ 00:10:25
Author: felixonmars
Revision: 463627
archrelease: copy trunk to community-staging-x86_64
Added:
haskell-httpd-shed/repos/community-staging-x86_64/
haskell-httpd-shed/repos/community-staging-x86_64/PKGBUILD
(from rev 463626, haskell-httpd-shed/trunk/PKGBUILD)
----------+
PKGBUILD | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
Copied: haskell-httpd-shed/repos/community-staging-x86_64/PKGBUILD (from rev 463626, haskell-httpd-shed/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2019-05-09 00:10:25 UTC (rev 463627)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Arch Haskell Team <arch-haskell at haskell.org>
+
+_hkgname=httpd-shed
+pkgname=haskell-httpd-shed
+pkgver=0.4.1.0
+pkgrel=7
+pkgdesc="A simple web-server with an interact style API"
+url="https://github.com/andygill/httpd-shed/"
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-network' 'haskell-network-bsd' 'haskell-network-uri')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz")
+sha512sums=('8383a6ebe6a0f9b7e2b32f258999c62b0575dabe214be07b0249f8b72a523ed1a22d819a556a6085b15202dab98a44dbcd5013bb9e600c2a9eda14dad8ca7364')
+
+build() {
+ cd $_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 \
+ -f-buildexamples -fnetwork-uri -fnetwork-bsd
+ 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 $_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