Date: Sunday, October 14, 2018 @ 17:52:06
  Author: felixonmars
Revision: 393707

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-mime-types/repos/community-staging-x86_64/
  haskell-mime-types/repos/community-staging-x86_64/PKGBUILD
    (from rev 393706, haskell-mime-types/trunk/PKGBUILD)

----------+
 PKGBUILD |   38 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)

Copied: haskell-mime-types/repos/community-staging-x86_64/PKGBUILD (from rev 
393706, haskell-mime-types/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD                           (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-10-14 17:52:06 UTC (rev 393707)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan <felixonm...@archlinux.org>
+# Contributor: Daniel Nagy <danielnagy at gmx de>
+# Contributor: hauzer <hau...@gmx.com>
+
+_hkgname=mime-types
+pkgname=haskell-mime-types
+pkgver=0.1.0.8
+pkgrel=2
+pkgdesc="Basic mime-type handling types and functions"
+url="https://hackage.haskell.org/package/${_hkgname}";
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('acbc69bbaac28db72da2b23f6da3654a69eea236e836f078ab3bfd09d9e9e199ad81cd72105ab42681ed0534152ce4ee5c3f2816a8617c2e1c9cda60dda4cf9f')
+
+build() {
+    cd "${srcdir}/${_hkgname}-${pkgver}"
+    runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+        --prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+        --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
-fnetwork-uri
+    runhaskell Setup build
+    runhaskell Setup register   --gen-script
+    runhaskell Setup unregister --gen-script
+    sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+    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/register/${pkgname}.sh"
+    install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+    runhaskell Setup copy --destdir="${pkgdir}"
+    install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+    rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Reply via email to