diff options
Diffstat (limited to 'pcr/pandoc')
-rw-r--r-- | pcr/pandoc/PKGBUILD | 108 | ||||
-rw-r--r-- | pcr/pandoc/SRCBUILD | 54 |
2 files changed, 0 insertions, 162 deletions
diff --git a/pcr/pandoc/PKGBUILD b/pcr/pandoc/PKGBUILD deleted file mode 100644 index 4d3483c08..000000000 --- a/pcr/pandoc/PKGBUILD +++ /dev/null @@ -1,108 +0,0 @@ -# Maintainer: Nicolas Reynolds <fauno@kiwwwi.com.ar> -# Based on haskell-pandoc - -# Run `makepkg -sp SRCBUILD` if you want to update the source tarball - -# hslua fails if LANG is empty or C -test -z "$LANG" && export LANG="en_US.utf8" - -pkgname=pandoc-static -_pkgname=pandoc -pkgver=1.13.1 -pkgrel=1 -_srcrel=1 -pkgdesc='Conversion between markup formats (no Haskell libs)' -url='http://johnmacfarlane.net/pandoc/' -license=('GPL') -arch=('i686' 'x86_64') -# Needed for pandoc-citeproc -depends=('icu<=55') -makedepends=('ghc' 'sh' 'cabal-install' 'alex' 'happy') -options=(strip !makeflags !distcc !emptydirs) -source=(https://repo.parabolagnulinux.org/other/pandoc-static/${_pkgname}-${pkgver}-${_srcrel}-any.src.tar.xz{,.sig} - SRCBUILD) -replaces=('pandoc') -provides=('pandoc') -optdepends=('texlive-most: for pdf creation') -md5sums=('c805827e4369bf5ba6ccff7164f03623' - 'SKIP' - '4c25acc06724a994d2ce52b069aab911') - -# PKGBUILD functions -build() { - mkdir -p ${srcdir}/{build,${_pkgname}-${pkgver}} - cd ${srcdir}/${_pkgname}-${pkgver} - -# pandoc-citeproc needs hsb2hs - export PATH=${srcdir}/build/usr/bin:$PATH - - while read _hkpkg extra; do -# Skip already built - [ -d "${srcdir}/build/usr/lib/i386-linux-ghc-7.8.3/$_hkpkg" ] && continue - - pushd ${srcdir}/${_pkgname}-${pkgver}/${_hkpkg} >/dev/null || continue - - msg2 "Building $_hkpkg" - - case $_hkpkg in - $_pkgname-$pkgver) - HOME=${srcdir}/${_pkgname}-${pkgver} \ - cabal configure --prefix=/usr \ - --flags='embed_data_files https' \ - --libdir=${srcdir}/build/usr/lib/i386-linux-ghc-7.8.3 -v - - HOME=${srcdir}/${_pkgname}-${pkgver} \ - cabal build - - HOME=${srcdir}/${_pkgname}-${pkgver} \ - cabal register --inplace - ;; - - pandoc-citeproc*) - HOME=${srcdir}/${_pkgname}-${pkgver} \ - cabal configure --flags='small_base embed_data_files bibutils hexpat unicode_collation' \ - --libdir=${srcdir}/build/usr/lib/i386-linux-ghc-7.8.3 \ - --prefix=/usr -v - - HOME=${srcdir}/${_pkgname}-${pkgver} \ - cabal build - ;; - - *) - HOME=${srcdir}/${_pkgname}-${pkgver} \ - cabal install --prefix=${srcdir}/build/usr --flags="embed_data_files" - ;; - esac - - popd >/dev/null - done <BUILDORDER - -} - -package() { - cd ${srcdir}/${_pkgname}-${pkgver}/${_pkgname}-${pkgver} - - runghc Setup.hs copy --destdir=${pkgdir}/ - - cd ${srcdir}/${_pkgname}-${pkgver}/pandoc-citeproc* - runghc Setup.hs copy --destdir=${pkgdir}/ - -# For some reason the library is installed anyway -# Remove all files and !emptydirs takes care of the rest - msg2 "Removing lib files..." - find ${pkgdir} -iname lib -print0 | xargs -0 rm -rvf - - cp -av ${srcdir}/build/usr/bin/* ${pkgdir}/usr/bin/ - -# EC is unfree and makes Parabola TeXLive cry -# besides, it's unneeded - find "${pkgdir}/usr/share" -name default.latex -exec \ - sed "/fontenc/d" -i {} \; - - find ${pkgdir}/usr/share -type f -exec chmod 644 {} \; - find ${pkgdir}/usr/share -type d -exec chmod 755 {} \; - - msg2 "Installing licenses" - install -d ${pkgdir}/usr/share/licenses - cp -rv ${srcdir}/build/usr/share/doc/* ${pkgdir}/usr/share/licenses/ -} 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 . -} |