haskell-terminfo update to 0.3.2.6

This commit is contained in:
Francesco 2013-12-12 22:32:36 +00:00
parent 4f39278366
commit fdb4d0169c
2 changed files with 53 additions and 21 deletions

View File

@ -1,35 +1,58 @@
# Maintainer: Stephen McIntosh <stephenmac7[at]gmail[dot]com> # Apps Packages for Chakra, part of www.chakra-project.org
# Maintainer: H W Tovetjärn (totte) <totte@tott.es>
# 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>
_hkgname=terminfo _hkgname=terminfo
pkgname=haskell-terminfo pkgname=haskell-terminfo
pkgver=0.3.2.3 pkgver=0.3.2.6
pkgrel=2 pkgrel=1
pkgdesc="Haskell bindings to the terminfo library." pkgdesc="Haskell bindings to the terminfo library"
url="http://hackage.haskell.org/package/${_hkgname}" url="http://hackage.haskell.org/package/terminfo"
license=('custom:BSD3') license=('custom:BSD3')
arch=('i686' 'x86_64') arch=('x86_64')
makedepends=() makedepends=()
depends=('ghc' 'haskell-extensible-exceptions') depends=('ghc=7.6.3-1' 'haskell-base>=4.0' 'haskell-base<5')
options=('strip') options=('strip')
source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) source=("http://hackage.haskell.org/packages/archive/terminfo/0.3.2.5/terminfo-0.3.2.5.tar.gz")
install=${pkgname}.install install="haskell-terminfo.install"
md5sums=('706f546c629ac100a402c9c2629c25fa') sha512sums=('68a882e6abb6a2e3ee70398761b899d635bfd96118b47437efeb6bc7b1a1d81a3c3e1a7f696d86057d2f8a8dece270ae9005d7905a6da97f12bcf8113ac70203')
build() { build() {
cd ${srcdir}/${_hkgname}-${pkgver} cd "${srcdir}/terminfo-0.3.2.5"
runhaskell Setup configure -O ${PKGBUILD_HASKELL_ENABLE_PROFILING:+-p } --enable-split-objs --enable-shared \ runhaskell Setup configure \
--prefix=/usr --docdir=/usr/share/doc/${pkgname} --libsubdir=\$compiler/site-local/\$pkgid -O \
${PKGBUILD_HASKELL_ENABLE_PROFILING:+-p } \
--enable-split-objs \
--enable-shared \
--prefix="/usr" \
--docdir="/usr/share/doc/haskell-terminfo" \
--libsubdir='$compiler/site-local/$pkgid'
runhaskell Setup build runhaskell Setup build
runhaskell Setup haddock runhaskell Setup haddock
runhaskell Setup register --gen-script runhaskell Setup register --gen-script
runhaskell Setup unregister --gen-script runhaskell Setup unregister --gen-script
sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
} }
package() { package() {
cd ${srcdir}/${_hkgname}-${pkgver} cd "${srcdir}/terminfo-0.3.2.5"
install -D -m744 register.sh ${pkgdir}/usr/share/haskell/${pkgname}/register.sh install -D -m744 register.sh \
install -m744 unregister.sh ${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh "${pkgdir}/usr/share/haskell/haskell-terminfo/register.sh"
install -d -m755 ${pkgdir}/usr/share/doc/ghc/html/libraries install -m744 unregister.sh \
ln -s /usr/share/doc/${pkgname}/html ${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname} "${pkgdir}/usr/share/haskell/haskell-terminfo/unregister.sh"
runhaskell Setup copy --destdir=${pkgdir} install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
rm -f ${pkgdir}/usr/share/doc/${pkgname}/LICENSE # Documentation
ln -s "/usr/share/doc/haskell-terminfo/html" \
"${pkgdir}/usr/share/doc/ghc/html/libraries/terminfo"
# License
install -D -m644 LICENSE \
"${pkgdir}/usr/share/licenses/haskell-terminfo/LICENSE"
rm -f "${pkgdir}/usr/share/doc/haskell-terminfo/LICENSE"
runhaskell Setup copy --destdir="${pkgdir}"
} }

View File

@ -1,18 +1,27 @@
HS_DIR=usr/share/haskell/haskell-terminfo HS_DIR=usr/share/haskell/haskell-terminfo
#pre_install() {
# echo "insert pre_install routine here"
#}
post_install() { post_install() {
${HS_DIR}/register.sh ${HS_DIR}/register.sh
(cd usr/share/doc/ghc/html/libraries; ./gen_contents_index) (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
} }
pre_upgrade() { pre_upgrade() {
${HS_DIR}/unregister.sh ${HS_DIR}/unregister.sh
} }
post_upgrade() { post_upgrade() {
${HS_DIR}/register.sh ${HS_DIR}/register.sh
(cd usr/share/doc/ghc/html/libraries; ./gen_contents_index) (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
} }
pre_remove() { pre_remove() {
${HS_DIR}/unregister.sh ${HS_DIR}/unregister.sh
} }
post_remove() { post_remove() {
(cd usr/share/doc/ghc/html/libraries; ./gen_contents_index) (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
} }