desktop/haskell-zlib/PKGBUILD

59 lines
2.1 KiB
Bash
Raw Normal View History

2013-08-25 23:12:55 +08:00
# Apps Packages for Chakra, part of www.chakra-project.org
# Maintainer: H W Tovetjärn (totte) <totte@tott.es>
2013-09-01 21:56:22 +08:00
# Contributors: Stephen McIntosh <stephenmac7[at]gmail[dot]com>
# Thomas Dziedzic <gostrc@gmail.com>
# Vesa Kaihlavirta <vesa@archlinux.org>
# Arch Haskell Team <arch-haskell@haskell.org>
2013-08-25 23:12:55 +08:00
2013-08-25 18:17:20 +08:00
_hkgname=zlib
pkgname=haskell-zlib
2013-08-28 14:32:23 +08:00
pkgver=0.5.4.1
2013-09-01 21:56:22 +08:00
pkgrel=2
pkgdesc="Compression and decompression in the gzip and zlib formats"
url="http://hackage.haskell.org/package/zlib"
2013-08-25 18:17:20 +08:00
license=('custom:BSD3')
2013-09-01 21:56:22 +08:00
arch=('x86_64' 'i686')
2013-08-25 18:17:20 +08:00
makedepends=()
2013-09-01 21:56:22 +08:00
depends=('ghc=7.6.3-1' 'haskell-base>=3' 'haskell-base<5' 'haskell-bytestring>=0.9' 'haskell-bytestring<0.12')
2013-08-25 18:17:20 +08:00
options=('strip')
2013-09-01 21:56:22 +08:00
source=("http://hackage.haskell.org/packages/archive/zlib/0.5.4.1/zlib-0.5.4.1.tar.gz")
install="haskell-zlib.install"
sha512sums=('aa3522a5704978badcf634e1d99282144f01ddee4600bd146631a3ee8b98080914eb2887869a5fa404dc9d1e438a5df87cf7d44548c2f3e1ec13ba19004ef985')
2013-08-25 18:17:20 +08:00
build() {
2013-09-01 21:56:22 +08:00
cd "${srcdir}/zlib-0.5.4.1"
2013-08-28 14:32:23 +08:00
runhaskell Setup configure \
2013-09-01 21:56:22 +08:00
-O \
${PKGBUILD_HASKELL_ENABLE_PROFILING:+-p } \
2013-08-28 14:32:23 +08:00
--enable-split-objs \
--enable-shared \
2013-09-01 21:56:22 +08:00
--prefix="/usr" \
--docdir="/usr/share/doc/haskell-zlib" \
--libsubdir='$compiler/site-local/$pkgid'
2013-08-25 18:17:20 +08:00
runhaskell Setup build
runhaskell Setup haddock
runhaskell Setup register --gen-script
runhaskell Setup unregister --gen-script
sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
}
2013-09-01 21:56:22 +08:00
2013-08-25 18:17:20 +08:00
package() {
2013-09-01 21:56:22 +08:00
cd "${srcdir}/zlib-0.5.4.1"
2013-08-28 14:32:23 +08:00
install -D -m744 register.sh \
2013-09-01 21:56:22 +08:00
"${pkgdir}/usr/share/haskell/haskell-zlib/register.sh"
2013-08-28 14:32:23 +08:00
install -m744 unregister.sh \
2013-09-01 21:56:22 +08:00
"${pkgdir}/usr/share/haskell/haskell-zlib/unregister.sh"
install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
# Documentation
ln -s "/usr/share/doc/haskell-zlib/html" \
"${pkgdir}/usr/share/doc/ghc/html/libraries/zlib"
2013-08-27 20:53:20 +08:00
# License
2013-08-28 14:32:23 +08:00
install -D -m644 LICENSE \
2013-09-01 21:56:22 +08:00
"${pkgdir}/usr/share/licenses/haskell-zlib/LICENSE"
rm -f "${pkgdir}/usr/share/doc/haskell-zlib/LICENSE"
runhaskell Setup copy --destdir="${pkgdir}"
2013-08-25 18:17:20 +08:00
}