Date: Friday, June 16, 2017 @ 10:03:10 Author: felixonmars Revision: 237601
upgpkg: pandoc-citeproc 0.10.4.1-70 rebuild with ghc,8.0.2 Modified: pandoc-citeproc/trunk/PKGBUILD ----------+ PKGBUILD | 54 ++++++++++++++++++++++-------------------------------- 1 file changed, 22 insertions(+), 32 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2017-06-16 09:54:13 UTC (rev 237600) +++ PKGBUILD 2017-06-16 10:03:10 UTC (rev 237601) @@ -2,28 +2,26 @@ # Maintainer: Felix Yan <[email protected]> # Contributor: Arch Haskell Team <[email protected]> -pkgbase=pandoc-citeproc -pkgname=(pandoc-citeproc haskell-pandoc-citeproc) +pkgname=pandoc-citeproc pkgver=0.10.4.1 -pkgrel=69 +pkgrel=70 pkgdesc="Supports using pandoc with citeproc" -url="https://hackage.haskell.org/package/${pkgbase}" +url="https://hackage.haskell.org/package/$pkgname" license=("custom:BSD3") arch=('i686' 'x86_64') -makedepends=("ghc=8.0.1" "haskell-aeson" "haskell-aeson-pretty" "haskell-attoparsec" - "haskell-data-default" "haskell-hs-bibutils" "haskell-mtl" - "haskell-old-locale" "haskell-pandoc" "haskell-pandoc-types" "haskell-parsec" - "haskell-rfc5051" "haskell-setenv" "haskell-split" "haskell-syb" - "haskell-tagsoup" "haskell-temporary" "haskell-text" "haskell-text-icu" - "haskell-unordered-containers" "haskell-vector" "haskell-xml-conduit" "haskell-yaml") -source=("https://hackage.haskell.org/packages/archive/${pkgbase}/${pkgver}/${pkgbase}-${pkgver}.tar.gz") +depends=("ghc" "haskell-aeson" "haskell-aeson-pretty" "haskell-attoparsec" "haskell-data-default" + "haskell-hs-bibutils" "haskell-mtl" "haskell-old-locale" "pandoc" "haskell-pandoc-types" + "haskell-parsec" "haskell-rfc5051" "haskell-setenv" "haskell-split" "haskell-syb" + "haskell-tagsoup" "haskell-temporary" "haskell-text" "haskell-text-icu" + "haskell-unordered-containers" "haskell-vector" "haskell-xml-conduit" "haskell-yaml") +source=("https://hackage.haskell.org/packages/archive/$pkgname/${pkgver}/$pkgname-${pkgver}.tar.gz") sha256sums=('6e6b0a89a831f9bfaa33dc0f3dff1792ee1626a5e66e1bd34da9447cd3c7de51') build() { - cd "${srcdir}/${pkgbase}-${pkgver}" + cd "${srcdir}/$pkgname-${pkgver}" - runhaskell Setup configure -O --enable-library-profiling --enable-shared \ - --prefix=/usr --docdir="/usr/share/doc/${pkgbase}" --datasubdir="$pkgbase" \ + runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \ + --prefix=/usr --docdir="/usr/share/doc/$pkgname" --datasubdir="$pkgname" \ --libsubdir=\$compiler/site-local/\$pkgid \ -f-debug -f-test_citeproc -funicode_collation -f-embed_data_files -fbibutils runhaskell Setup build @@ -34,25 +32,17 @@ sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh } -package_pandoc-citeproc() { - depends=('pandoc' 'icu') +package() { + cd "${srcdir}/$pkgname-${pkgver}" - cd "${srcdir}/${pkgbase}-${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" + install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries" + ln -s "/usr/share/doc/$pkgname/html" "${pkgdir}/usr/share/doc/ghc/html/libraries/$pkgname" runhaskell Setup copy --destdir="${pkgdir}" - rm -r "$pkgdir"/usr/{lib,share/doc} - install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" -} + install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/$pkgname/LICENSE" + rm -f "${pkgdir}/usr/share/doc/$pkgname/LICENSE" -package_haskell-pandoc-citeproc() { - pkgdesc="Supports using pandoc with citeproc (docs and libraries)" - depends=("${makedepends[@]}" 'pandoc-citeproc') - - cd "${srcdir}/${pkgbase}-${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" - install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries" - ln -s "/usr/share/doc/${pkgbase}/html" "${pkgdir}/usr/share/doc/ghc/html/libraries/${pkgbase}" - runhaskell Setup copy --destdir="${pkgdir}" - rm -r "$pkgdir"/usr/share/{pandoc-citeproc,man} "$pkgdir"/usr/bin - rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE" + # Remove static libs + find "$pkgdir"/usr/lib -name "*.a" -delete }
