updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / haskell-yesod-json / PKGBUILD
blob13c3bc97806629a85c504ca046841b6254620dd7
1 # custom variables
2 _hkgname=yesod-json
3 _licensefile=LICENSE
5 # PKGBUILD options/directives
6 pkgname=haskell-yesod-json
7 pkgver=0.2.1
8 pkgrel=8
9 pkgdesc="Generate content for Yesod using the aeson package."
10 url="http://www.yesodweb.com/"
11 license=("BSD3")
12 arch=('i686' 'x86_64')
13 makedepends=()
14 depends=("ghc=7.0.3-2"
15          "haskell-aeson-native=0.3.3.1-2"
16          "haskell-shakespeare-js=0.10.2-2"
17          "haskell-text=0.11.0.5-2.1"
18          "haskell-vector=0.9-1"
19          "haskell-yesod-core=0.9.3.3-1")
20 options=('strip')
21 source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz")
22 install="${pkgname}.install"
23 sha256sums=("08593e4784b21032be5f6071423c9f6997bef94ea15d0d34fadea996f105e1b4")
25 # PKGBUILD functions
26 build() {
27     cd ${srcdir}/${_hkgname}-${pkgver}
28     
29     runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
30         --prefix=/usr --docdir=/usr/share/doc/${pkgname} \
31         --libsubdir=\$compiler/site-local/\$pkgid
32     runhaskell Setup build
33     runhaskell Setup haddock
34     runhaskell Setup register --gen-script
35     runhaskell Setup unregister --gen-script
36     sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
39 package() {
40     cd ${srcdir}/${_hkgname}-${pkgver}
41     install -D -m744 register.sh   ${pkgdir}/usr/share/haskell/${pkgname}/register.sh
42     install    -m744 unregister.sh ${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
43     install -d -m755 ${pkgdir}/usr/share/doc/ghc/html/libraries
44     ln -s /usr/share/doc/${pkgname}/html ${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}
45     runhaskell Setup copy --destdir=${pkgdir}
46     install -D -m644 ${_licensefile} ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
47     rm -f ${pkgdir}/usr/share/doc/${pkgname}/${_licensefile}