2 _hkgname=persistent-sqlite
5 # PKGBUILD options/directives
6 pkgname=haskell-persistent-sqlite
9 pkgdesc="Backend for the persistent library using sqlite3."
10 url="http://www.yesodweb.com/book/persistent"
12 arch=('i686' 'x86_64')
14 depends=("ghc=7.0.3-2"
15 "haskell-data-object=0.3.1.7-1"
16 "haskell-monad-control=0.2.0.3-2"
17 "haskell-neither=0.3.0-1"
18 "haskell-persistent=0.6.4-1"
19 "haskell-text=0.11.0.5-2.1"
20 "haskell-transformers=0.2.2.0-3.1")
22 source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz")
23 install="${pkgname}.install"
24 sha256sums=("77ed07ce56a33199c8e72bd979f2edcf92fce84ae654cf36a853f02c918a1f33")
28 cd ${srcdir}/${_hkgname}-${pkgver}
30 runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
31 --prefix=/usr --docdir=/usr/share/doc/${pkgname} \
32 --libsubdir=\$compiler/site-local/\$pkgid
33 runhaskell Setup build
34 runhaskell Setup haddock
35 runhaskell Setup register --gen-script
36 runhaskell Setup unregister --gen-script
37 sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
41 cd ${srcdir}/${_hkgname}-${pkgver}
42 install -D -m744 register.sh ${pkgdir}/usr/share/haskell/${pkgname}/register.sh
43 install -m744 unregister.sh ${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
44 install -d -m755 ${pkgdir}/usr/share/doc/ghc/html/libraries
45 ln -s /usr/share/doc/${pkgname}/html ${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}
46 runhaskell Setup copy --destdir=${pkgdir}
47 install -D -m644 ${_licensefile} ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
48 rm -f ${pkgdir}/usr/share/doc/${pkgname}/${_licensefile}