2014-04-18 07:30:02 +08:00
|
|
|
# Maintainer: UtG <utg[dot]chakra.linux[at]gmail[dot]com>
|
|
|
|
# Contributors: H W Tovetjärn (totte) <totte@tott.es>
|
|
|
|
# Stephen McIntosh <stephenmac7[at]gmail[dot]com>
|
|
|
|
# Thomas Dziedzic <gostrc@gmail.com>
|
|
|
|
# Vesa Kaihlavirta <vesa@archlinux.org>
|
|
|
|
# Arch Haskell Team <arch-haskell@haskell.org>
|
|
|
|
|
|
|
|
## NOTE: when you update Haskell packages you'll have to update the entire stack to not break it ##
|
|
|
|
|
2012-06-17 10:33:01 +08:00
|
|
|
_hkgname=zlib
|
2011-01-30 00:34:09 +08:00
|
|
|
pkgname=haskell-zlib
|
2016-05-16 00:30:21 +08:00
|
|
|
pkgver=0.6.1.1
|
2015-02-23 07:43:59 +08:00
|
|
|
pkgrel=1
|
2011-01-30 00:34:09 +08:00
|
|
|
pkgdesc="Compression and decompression in the gzip and zlib formats"
|
2012-06-17 10:33:01 +08:00
|
|
|
url="http://hackage.haskell.org/package/${_hkgname}"
|
|
|
|
license=('custom:BSD3')
|
2014-04-18 07:30:02 +08:00
|
|
|
arch=('x86_64')
|
2015-02-23 07:43:59 +08:00
|
|
|
depends=('ghc' 'zlib')
|
2014-04-18 07:30:02 +08:00
|
|
|
options=('strip' 'staticlibs')
|
2012-06-17 10:33:01 +08:00
|
|
|
source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
|
|
|
|
install=${pkgname}.install
|
2016-05-16 00:30:21 +08:00
|
|
|
md5sums=('d841c86562542a55dd086df69764ee17')
|
2014-04-18 07:30:02 +08:00
|
|
|
|
2011-01-30 00:34:09 +08:00
|
|
|
build() {
|
2012-06-17 10:33:01 +08:00
|
|
|
cd ${srcdir}/${_hkgname}-${pkgver}
|
2014-04-18 07:30:02 +08:00
|
|
|
runhaskell Setup configure \
|
|
|
|
-O \
|
2015-02-23 07:43:59 +08:00
|
|
|
-p \
|
2014-04-18 07:30:02 +08:00
|
|
|
--enable-split-objs \
|
|
|
|
--enable-shared \
|
|
|
|
--prefix=/usr \
|
|
|
|
--docdir=/usr/share/doc/haskell-zlib \
|
|
|
|
--libsubdir=\$compiler/site-local/\$pkgid
|
2012-06-17 10:33:01 +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
|
2011-10-10 02:06:48 +08:00
|
|
|
}
|
2011-01-30 00:34:09 +08:00
|
|
|
package() {
|
2012-06-17 10:33:01 +08:00
|
|
|
cd ${srcdir}/${_hkgname}-${pkgver}
|
2014-04-18 07:30:02 +08:00
|
|
|
install -D -m744 register.sh \
|
|
|
|
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
|
|
|
|
install -m744 unregister.sh \
|
|
|
|
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
|
|
|
|
install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
|
|
|
|
|
|
|
|
# Documentation
|
|
|
|
ln -s "/usr/share/doc/${pkgname}/html" \
|
|
|
|
"${pkgdir}/usr/share/doc/ghc/html/libraries/zlib"
|
|
|
|
|
|
|
|
# License
|
|
|
|
install -D -m644 LICENSE \
|
|
|
|
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
|
|
|
|
rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
|
|
|
|
|
|
|
|
runhaskell Setup copy --destdir="${pkgdir}"
|
2011-01-30 00:34:09 +08:00
|
|
|
}
|