diff options
author | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-10-23 14:56:12 -0300 |
---|---|---|
committer | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-10-23 14:56:12 -0300 |
commit | 51abf13dfa1bdc99348e39a061a114e9abddad39 (patch) | |
tree | 8e85827cbef4e885fa58d17741f9cb3e4aaea513 /pcr/pandoc/SRCBUILD | |
parent | e633e22705086c12c722dd5bf7b2a12ca05c02bd (diff) | |
download | abslibre-51abf13dfa1bdc99348e39a061a114e9abddad39.tar.gz abslibre-51abf13dfa1bdc99348e39a061a114e9abddad39.tar.bz2 abslibre-51abf13dfa1bdc99348e39a061a114e9abddad39.zip |
pandoc upgrade
Diffstat (limited to 'pcr/pandoc/SRCBUILD')
-rw-r--r-- | pcr/pandoc/SRCBUILD | 37 |
1 files changed, 23 insertions, 14 deletions
diff --git a/pcr/pandoc/SRCBUILD b/pcr/pandoc/SRCBUILD index 9cc4b128e..c907517cc 100644 --- a/pcr/pandoc/SRCBUILD +++ b/pcr/pandoc/SRCBUILD @@ -2,8 +2,8 @@ # Based on haskell-pandoc pkgname=pandoc -pkgver=1.12.4.2 -pkgrel=2 +pkgver=1.13.1 +pkgrel=1 pkgdesc='Conversion between markup formats (no Haskell libs)' url='http://johnmacfarlane.net/pandoc/' license=('GPL') @@ -11,24 +11,33 @@ arch=('any') makedepends=('ghc' 'sh' 'cabal-install') source=() options=(!strip) +_flags=(https embed_data_files bibutils hexpat unicode_collation) +_packages=(hs-bibutils network hexpat text text-icu hsb2hs + http-client-0.3.8.2 + http-client-tls http-types ${pkgname}-${pkgver} + pandoc-citeproc) + +_cabal() { + HOME=${srcdir}/${pkgname}-${pkgver} cabal $@ +} # PKGBUILD functions build() { - mkdir -p ${srcdir}/{build,${pkgname}-${pkgver}} - cd ${srcdir}/${pkgname}-${pkgver} - - HOME=${srcdir}/${pkgname}-${pkgver} \ - cabal --verbose=3 update + mkdir -p ${srcdir}/{build,${pkgname}-${pkgver}} + cd ${srcdir}/${pkgname}-${pkgver} - HOME=${srcdir}/${pkgname}-${pkgver} \ - cabal --verbose=3 fetch hs-bibutils network hexpat text text-icu hsb2hs ${pkgname}-${pkgver} pandoc-citeproc + _cabal --verbose=3 update + _cabal --verbose=3 fetch ${_packages[@]} - msg2 "Getting the dependency build order" + msg2 "Getting the dependency build order" # Ignore the cabal messages - HOME=${srcdir}/${pkgname}-${pkgver} \ - cabal install --flags="embed_data_files bibutils hexpat unicode_collation" --dry-run text hsb2hs ${pkgname}-${pkgver} pandoc-citeproc | - grep "\-[0-9]\+" | - tee BUILDORDER + _cabal install \ + --flags="${flags[@]}"\ + --dry-run \ + ${_packages[@]} | + grep "\-[0-9]\+" | + cut -d" " -f1 | + tee BUILDORDER } package() { |