[arch-commits] Commit in (4 files)

Felix Yan felixonmars at archlinux.org
Sat May 25 05:01:45 UTC 2019


    Date: Saturday, May 25, 2019 @ 05:01:45
  Author: felixonmars
Revision: 469714

addpkg: haskell-time-compat 1.9.2-1

Added:
  haskell-time-compat/
  haskell-time-compat/repos/
  haskell-time-compat/trunk/
  haskell-time-compat/trunk/PKGBUILD

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

Added: haskell-time-compat/trunk/PKGBUILD
===================================================================
--- haskell-time-compat/trunk/PKGBUILD	                        (rev 0)
+++ haskell-time-compat/trunk/PKGBUILD	2019-05-25 05:01:45 UTC (rev 469714)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+_hkgname=time-compat
+pkgname=haskell-time-compat
+pkgver=1.9.2
+pkgrel=1
+pkgdesc="Compatibility package for time"
+url="https://github.com/phadej/time-compat"
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base-orphans')
+makedepends=('ghc' 'haskell-base-compat' 'haskell-hunit' 'haskell-quickcheck' 'haskell-tagged'
+             'haskell-tasty' 'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('22baa1b3e0541150d35d12e333c489b7d1caa91967d283935dcafdd7d39251870d8da52af7d69dd26b8344954ed1039bbe90fd9de61f3d326847853a1f79af03')
+
+prepare() {
+    cd $_hkgname-$pkgver
+    echo -e "import Distribution.Simple\nmain = defaultMain" > Setup.hs
+}
+
+build() {
+    cd $_hkgname-$pkgver    
+    
+    runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \
+        --prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+        --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+    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
+}
+
+check() {
+    cd $_hkgname-$pkgver
+    runhaskell Setup test
+}
+
+package() {
+    cd $_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"
+}



More information about the arch-commits mailing list