[arch-commits] Commit in haskell-path-io/repos (6 files)
Felix Yan
fyan at archlinux.org
Sun Feb 21 04:28:15 UTC 2016
Date: Sunday, February 21, 2016 @ 05:28:14
Author: fyan
Revision: 162949
archrelease: copy trunk to community-i686, community-x86_64
Added:
haskell-path-io/repos/community-i686/
haskell-path-io/repos/community-i686/PKGBUILD
(from rev 162948, haskell-path-io/trunk/PKGBUILD)
haskell-path-io/repos/community-i686/haskell-path-io.install
(from rev 162948, haskell-path-io/trunk/haskell-path-io.install)
haskell-path-io/repos/community-x86_64/
haskell-path-io/repos/community-x86_64/PKGBUILD
(from rev 162948, haskell-path-io/trunk/PKGBUILD)
haskell-path-io/repos/community-x86_64/haskell-path-io.install
(from rev 162948, haskell-path-io/trunk/haskell-path-io.install)
------------------------------------------+
community-i686/PKGBUILD | 42 +++++++++++++++++++++++++++++
community-i686/haskell-path-io.install | 23 +++++++++++++++
community-x86_64/PKGBUILD | 42 +++++++++++++++++++++++++++++
community-x86_64/haskell-path-io.install | 23 +++++++++++++++
4 files changed, 130 insertions(+)
Copied: haskell-path-io/repos/community-i686/PKGBUILD (from rev 162948, haskell-path-io/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-21 04:28:14 UTC (rev 162949)
@@ -0,0 +1,42 @@
+# $Id: PKGBUILD 162763 2016-02-20 14:34:32Z fyan $
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Daniel Nagy <danielnagy at gmx de>
+# Contributor: Daniel Micay <danielmicay at gmail.com>
+
+pkgname=haskell-path-io
+_hkgname=path-io
+pkgver=0.3.1
+pkgrel=1
+pkgdesc="Interface to ‘directory’ package for users of ‘path’"
+url="https://github.com/mrkkrp/path-io"
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" 'haskell-exceptions' 'haskell-path' 'haskell-temporary')
+options=('staticlibs')
+install=$pkgname.install
+source=("http://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-${pkgver}.tar.gz")
+md5sums=('f0df7a3c4622ebff00ca77b9afda53df')
+
+build() {
+ cd "$srcdir/$_hkgname-$pkgver"
+ runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+ --prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+ --libsubdir=\$compiler/site-local/\$pkgid \
+ -f-dev
+ runhaskell Setup build
+ LC_CTYPE=en_US.UTF-8 runhaskell Setup haddock --hoogle --html
+ runhaskell Setup register --gen-script
+ runhaskell Setup unregister --gen-script
+ sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+ cd "$srcdir/$_hkgname-$pkgver"
+ install -Dm744 register.sh "$pkgdir/usr/share/haskell/$pkgname/register.sh"
+ install -m744 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/$_hkgname"
+ runhaskell Setup copy --destdir="$pkgdir"
+ install -D -m644 "LICENSE.md" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
+ rm -f "$pkgdir/usr/share/doc/$pkgname/LICENSE.md"
+}
Copied: haskell-path-io/repos/community-i686/haskell-path-io.install (from rev 162948, haskell-path-io/trunk/haskell-path-io.install)
===================================================================
--- community-i686/haskell-path-io.install (rev 0)
+++ community-i686/haskell-path-io.install 2016-02-21 04:28:14 UTC (rev 162949)
@@ -0,0 +1,23 @@
+HS_DIR=usr/share/haskell/haskell-path-io
+
+post_install() {
+ $HS_DIR/register.sh
+ (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_upgrade() {
+ $HS_DIR/unregister.sh
+}
+
+post_upgrade() {
+ $HS_DIR/register.sh
+ (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_remove() {
+ $HS_DIR/unregister.sh
+}
+
+post_remove() {
+ (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
Copied: haskell-path-io/repos/community-x86_64/PKGBUILD (from rev 162948, haskell-path-io/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD (rev 0)
+++ community-x86_64/PKGBUILD 2016-02-21 04:28:14 UTC (rev 162949)
@@ -0,0 +1,42 @@
+# $Id: PKGBUILD 162763 2016-02-20 14:34:32Z fyan $
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Daniel Nagy <danielnagy at gmx de>
+# Contributor: Daniel Micay <danielmicay at gmail.com>
+
+pkgname=haskell-path-io
+_hkgname=path-io
+pkgver=0.3.1
+pkgrel=1
+pkgdesc="Interface to ‘directory’ package for users of ‘path’"
+url="https://github.com/mrkkrp/path-io"
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" 'haskell-exceptions' 'haskell-path' 'haskell-temporary')
+options=('staticlibs')
+install=$pkgname.install
+source=("http://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-${pkgver}.tar.gz")
+md5sums=('f0df7a3c4622ebff00ca77b9afda53df')
+
+build() {
+ cd "$srcdir/$_hkgname-$pkgver"
+ runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+ --prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+ --libsubdir=\$compiler/site-local/\$pkgid \
+ -f-dev
+ runhaskell Setup build
+ LC_CTYPE=en_US.UTF-8 runhaskell Setup haddock --hoogle --html
+ runhaskell Setup register --gen-script
+ runhaskell Setup unregister --gen-script
+ sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+ cd "$srcdir/$_hkgname-$pkgver"
+ install -Dm744 register.sh "$pkgdir/usr/share/haskell/$pkgname/register.sh"
+ install -m744 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/$_hkgname"
+ runhaskell Setup copy --destdir="$pkgdir"
+ install -D -m644 "LICENSE.md" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
+ rm -f "$pkgdir/usr/share/doc/$pkgname/LICENSE.md"
+}
Copied: haskell-path-io/repos/community-x86_64/haskell-path-io.install (from rev 162948, haskell-path-io/trunk/haskell-path-io.install)
===================================================================
--- community-x86_64/haskell-path-io.install (rev 0)
+++ community-x86_64/haskell-path-io.install 2016-02-21 04:28:14 UTC (rev 162949)
@@ -0,0 +1,23 @@
+HS_DIR=usr/share/haskell/haskell-path-io
+
+post_install() {
+ $HS_DIR/register.sh
+ (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_upgrade() {
+ $HS_DIR/unregister.sh
+}
+
+post_upgrade() {
+ $HS_DIR/register.sh
+ (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_remove() {
+ $HS_DIR/unregister.sh
+}
+
+post_remove() {
+ (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
More information about the arch-commits
mailing list