[arch-commits] Commit in hlint/repos (2 files)
Felix Yan
felixonmars at archlinux.org
Thu Feb 20 11:12:32 UTC 2020
Date: Thursday, February 20, 2020 @ 11:12:32
Author: felixonmars
Revision: 577084
archrelease: copy trunk to community-staging-x86_64
Added:
hlint/repos/community-staging-x86_64/
hlint/repos/community-staging-x86_64/PKGBUILD
(from rev 577083, hlint/trunk/PKGBUILD)
----------+
PKGBUILD | 42 ++++++++++++++++++++++++++++++++++++++++++
1 file changed, 42 insertions(+)
Copied: hlint/repos/community-staging-x86_64/PKGBUILD (from rev 577083, hlint/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2020-02-20 11:12:32 UTC (rev 577084)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Arch Haskell Team <arch-haskell at haskell.org>
+
+pkgname=hlint
+pkgver=2.2.6
+pkgrel=2
+pkgdesc="Source code suggestions"
+url="http://community.haskell.org/~ndm/hlint/"
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-terminal' 'haskell-cmdargs' 'haskell-cpphs'
+ 'haskell-data-default' 'haskell-extra' 'haskell-filepattern' 'haskell-ghc'
+ 'haskell-hscolour' 'haskell-refact' 'haskell-src-exts' 'haskell-src-exts-util'
+ 'haskell-syb' 'haskell-uniplate' 'haskell-unordered-containers' 'haskell-vector'
+ 'haskell-yaml')
+conflicts=('haskell-hlint')
+replaces=('haskell-hlint')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz")
+sha512sums=('9c355ea856a414cf90a2505ccae8da5d6f7d9c4483ab99b40dfcbc69722c2e638a1f897f17dd465d0fe7cdad178407e1da0c7b37b69c6888a04de6e07904a4e2')
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \
+ --prefix=/usr --docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname" \
+ --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+ -fgpl -fthreaded
+ 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}/${pkgname}-${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}/COPYING.BSD3"
+}
More information about the arch-commits
mailing list