[arch-commits] Commit in haskell-tree-diff/repos (2 files)
Felix Yan
felixonmars at archlinux.org
Thu May 16 19:28:37 UTC 2019
Date: Thursday, May 16, 2019 @ 19:28:36
Author: felixonmars
Revision: 467558
archrelease: copy trunk to community-staging-x86_64
Added:
haskell-tree-diff/repos/community-staging-x86_64/
haskell-tree-diff/repos/community-staging-x86_64/PKGBUILD
(from rev 467557, haskell-tree-diff/trunk/PKGBUILD)
----------+
PKGBUILD | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 51 insertions(+)
Copied: haskell-tree-diff/repos/community-staging-x86_64/PKGBUILD (from rev 467557, haskell-tree-diff/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2019-05-16 19:28:36 UTC (rev 467558)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+_hkgname=tree-diff
+pkgname=haskell-tree-diff
+pkgver=0.0.2.1
+pkgrel=5
+pkgdesc="Diffing of (expression) trees"
+url="https://github.com/phadej/tree-diff"
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-wl-pprint' 'haskell-ansi-terminal'
+ 'haskell-base-compat' 'haskell-generics-sop' 'haskell-hashable' 'haskell-memotrie'
+ 'haskell-parsers' 'haskell-quickcheck' 'haskell-scientific' 'haskell-tagged'
+ 'haskell-unordered-containers' 'haskell-uuid-types' 'haskell-vector')
+makedepends=('ghc' 'haskell-trifecta' 'haskell-tasty' 'haskell-tasty-golden'
+ 'haskell-tasty-quickcheck')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('5dbfa198f28b54673d658d16dc5fdeb8d59717b2ecf27aa5a3c867dafd103618c11c27470699b232eec6f6a217b11b9b479ef5233b1f1d0b8e2cba4f968843f4')
+
+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