summaryrefslogtreecommitdiff
path: root/pcr/pandoc/SRCBUILD
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2014-11-21 12:50:18 -0500
committerLuke Shumaker <lukeshu@sbcglobal.net>2014-11-21 12:50:18 -0500
commit358ec8b89852743ad2f55c2c94e691a4b73e98ec (patch)
tree1dab3767809bc967aa1a7ba1367d458f400eade3 /pcr/pandoc/SRCBUILD
parent3ca1b7d880681bc57103b151811e069a581adbe2 (diff)
clean up pcr/pandoc static
Diffstat (limited to 'pcr/pandoc/SRCBUILD')
-rw-r--r--pcr/pandoc/SRCBUILD54
1 files changed, 0 insertions, 54 deletions
diff --git a/pcr/pandoc/SRCBUILD b/pcr/pandoc/SRCBUILD
deleted file mode 100644
index c907517cc..000000000
--- a/pcr/pandoc/SRCBUILD
+++ /dev/null
@@ -1,54 +0,0 @@
-# Maintainer: Nicolas Reynolds <fauno@kiwwwi.com.ar>
-# Based on haskell-pandoc
-
-pkgname=pandoc
-pkgver=1.13.1
-pkgrel=1
-pkgdesc='Conversion between markup formats (no Haskell libs)'
-url='http://johnmacfarlane.net/pandoc/'
-license=('GPL')
-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}
-
- _cabal --verbose=3 update
- _cabal --verbose=3 fetch ${_packages[@]}
-
- msg2 "Getting the dependency build order"
-# Ignore the cabal messages
- _cabal install \
- --flags="${flags[@]}"\
- --dry-run \
- ${_packages[@]} |
- grep "\-[0-9]\+" |
- cut -d" " -f1 |
- tee BUILDORDER
-}
-
-package() {
- export PKGEXT=.src.tar.xz
- export PKGDEST=${SRCDEST}
-
- mkdir -p ${pkgdir}/${pkgname}-${pkgver}
- cd ${pkgdir}/${pkgname}-${pkgver}
-
- find ${srcdir}/${pkgname}-${pkgver} -iname '*.tar.?z' -a \! -iname '00-index.tar.gz' -exec \
- bsdtar xvf '{}' \;
-
- cp ${srcdir}/${pkgname}-${pkgver}/BUILDORDER .
-}