summaryrefslogtreecommitdiff
path: root/community/haskell-vector/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-11-02 01:15:19 -0700
committerroot <root@rshg054.dnsready.net>2012-11-02 01:15:19 -0700
commit35bd2bb6857eb818ca53b8fe34d88106133342f4 (patch)
tree61a0a9d6d37f293a174fac6197e7fbd3e12aed1a /community/haskell-vector/PKGBUILD
parent83a318800db22408628e60c9e1730578efcfee37 (diff)
Fri Nov 2 01:12:32 PDT 2012
Diffstat (limited to 'community/haskell-vector/PKGBUILD')
-rw-r--r--community/haskell-vector/PKGBUILD39
1 files changed, 39 insertions, 0 deletions
diff --git a/community/haskell-vector/PKGBUILD b/community/haskell-vector/PKGBUILD
new file mode 100644
index 000000000..9020a2f0b
--- /dev/null
+++ b/community/haskell-vector/PKGBUILD
@@ -0,0 +1,39 @@
+# $Id: PKGBUILD 79236 2012-11-01 13:18:13Z spupykin $
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+
+pkgname=haskell-vector
+pkgver=0.10.0.1
+pkgrel=1
+pkgdesc="Efficient Arrays"
+url="http://code.haskell.org/vector"
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+makedepends=()
+depends=("ghc" "haskell-primitive")
+options=('strip')
+install="${pkgname}.install"
+source=("http://hackage.haskell.org/packages/archive/vector/${pkgver}/vector-${pkgver}.tar.gz")
+sha256sums=('ece945058b01a77c5fff31e89bbea76ac619677041c41286a2da5e8b515508af')
+
+build() {
+ cd ${srcdir}/vector-${pkgver}
+ runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
+ --prefix=/usr --docdir=/usr/share/doc/${pkgname} \
+ --libsubdir=\$compiler/site-local/\$pkgid
+ 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
+}
+
+package() {
+ cd ${srcdir}/vector-${pkgver}
+ install -Dm744 register.sh ${pkgdir}/usr/share/haskell/${pkgname}/register.sh
+ install -Dm744 unregister.sh ${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
+ install -dm755 ${pkgdir}/usr/share/doc/ghc/html/libraries
+ ln -s /usr/share/doc/${pkgname}/html ${pkgdir}/usr/share/doc/ghc/html/libraries/vector
+ runhaskell Setup copy --destdir=${pkgdir}
+ install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+ rm -f ${pkgdir}/usr/share/doc/${pkgname}/LICENSE
+}