Date: Friday, July 31, 2020 @ 21:35:34 Author: felixonmars Revision: 666537
archrelease: copy trunk to community-staging-x86_64 Added: haskell-jira-wiki-markup/repos/community-staging-x86_64/ haskell-jira-wiki-markup/repos/community-staging-x86_64/PKGBUILD (from rev 666536, haskell-jira-wiki-markup/trunk/PKGBUILD) ----------+ PKGBUILD | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) Copied: haskell-jira-wiki-markup/repos/community-staging-x86_64/PKGBUILD (from rev 666536, haskell-jira-wiki-markup/trunk/PKGBUILD) =================================================================== --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2020-07-31 21:35:34 UTC (rev 666537) @@ -0,0 +1,47 @@ +# Maintainer: Felix Yan <felixonm...@archlinux.org> + +_hkgname=jira-wiki-markup +pkgname=haskell-jira-wiki-markup +pkgver=1.2.0 +pkgrel=4 +pkgdesc="Handle Jira wiki markup" +url="https://github.com/tarleb/jira-wiki-markup" +license=('MIT') +arch=('x86_64') +depends=('ghc-libs') +makedepends=('ghc' 'haskell-tasty' 'haskell-tasty-hunit') +source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) +sha512sums=('891fafda196c2653ebfd6fa92cc480ebdaa740c82ff79097ad99fcbdc5684c4e73d3938ee40697e7c40f7097d5ad685d78d882870b9cf7eac52dd92ca3433fa9') + +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 $MAKEFLAGS + 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 +}