updated on Tue Jan 17 00:10:10 UTC 2012
[aur-mirror.git] / hstidy / PKGBUILD
blob3a80abf8fb81cbfaecf0ab7aff54d5fc53d56160
1 # Maintainer: Arch Haskell Team <arch-haskell@haskell.org>
2 _hkgname=hstidy
3 pkgname=hstidy
4 pkgver=0.2
5 pkgrel=3
6 pkgdesc="Takes haskell source on stdin, parses it, then prettyprints it to stdout."
7 url="http://hackage.haskell.org/package/${_hkgname}"
8 license=('custom:BSD3')
9 arch=('i686' 'x86_64')
10 makedepends=('ghc' 'haskell-haskell-src-exts')
11 depends=('gmp')
12 options=('strip')
13 source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
14 build() {
15     cd ${srcdir}/${_hkgname}-${pkgver}
16     runhaskell Setup configure --prefix=/usr --docdir=/usr/share/doc/${pkgname} -O
17     runhaskell Setup build
19 package() {
20     cd ${srcdir}/${_hkgname}-${pkgver}
21     runhaskell Setup copy --destdir=${pkgdir}
22     install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
23     rm -f ${pkgdir}/usr/share/doc/${pkgname}/LICENSE
25 md5sums=('fae034095759c511ea8d3ef5fcf38e88')