[arch-commits] Commit in (5 files)

Felix Yan fyan at archlinux.org
Tue Oct 13 01:44:10 UTC 2015


    Date: Tuesday, October 13, 2015 @ 03:44:10
  Author: fyan
Revision: 143819

addpkg: haskell-tagsoup 0.13.3-1

Added:
  haskell-tagsoup/
  haskell-tagsoup/repos/
  haskell-tagsoup/trunk/
  haskell-tagsoup/trunk/PKGBUILD
  haskell-tagsoup/trunk/haskell-tagsoup.install

-------------------------+
 PKGBUILD                |   43 +++++++++++++++++++++++++++++++++++++++++++
 haskell-tagsoup.install |   26 ++++++++++++++++++++++++++
 2 files changed, 69 insertions(+)

Added: haskell-tagsoup/trunk/PKGBUILD
===================================================================
--- haskell-tagsoup/trunk/PKGBUILD	                        (rev 0)
+++ haskell-tagsoup/trunk/PKGBUILD	2015-10-13 01:44:10 UTC (rev 143819)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Arch Haskell Team <arch-haskell at haskell.org>
+
+_hkgname=tagsoup
+pkgname=haskell-tagsoup
+pkgver=0.13.3
+pkgrel=1
+pkgdesc="Parsing and extracting information from (possibly malformed) HTML/XML documents"
+url="http://community.haskell.org/~ndm/tagsoup/"
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.2" "haskell-text")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz")
+install="${pkgname}.install"
+sha256sums=('32a862118d7836e9beb25fe4b317472fab6e1d41daefa86067231b328cff668d')
+
+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-download -f-testprog
+    runhaskell Setup build
+    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 -D -m744 register.sh   "${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+    install    -m744 unregister.sh "${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+    install -d -m755 "${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" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+    rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


Property changes on: haskell-tagsoup/trunk/PKGBUILD
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: haskell-tagsoup/trunk/haskell-tagsoup.install
===================================================================
--- haskell-tagsoup/trunk/haskell-tagsoup.install	                        (rev 0)
+++ haskell-tagsoup/trunk/haskell-tagsoup.install	2015-10-13 01:44:10 UTC (rev 143819)
@@ -0,0 +1,26 @@
+# custom variables
+pkgname=haskell-tagsoup
+HS_DIR=usr/share/haskell/${pkgname}
+
+# functions
+post_install() {
+    ${HS_DIR}/register.sh --verbose=0
+    /usr/share/doc/ghc/html/libraries/arch-gen-contents-index
+}
+
+pre_upgrade() {
+    ${HS_DIR}/unregister.sh --verbose=0
+}
+
+post_upgrade() {
+    ${HS_DIR}/register.sh --verbose=0
+    /usr/share/doc/ghc/html/libraries/arch-gen-contents-index
+}
+
+pre_remove() {
+    ${HS_DIR}/unregister.sh --verbose=0
+}
+
+post_remove() {
+    /usr/share/doc/ghc/html/libraries/arch-gen-contents-index
+}



More information about the arch-commits mailing list