blob: 668c6407b549362976dd5f01a536a7aae97b2d60 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
# Maintainer: Nicolas Reynolds <fauno@kiwwwi.com.ar>
# Based on haskell-pandoc
# Run `makepkg -sp SRCBUILD` if you want to update the source tarball
pkgname=pandoc-static
_pkgname=pandoc
pkgver=1.12.3.3
pkgrel=2
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>=52' 'icu<=54')
makedepends=('ghc' 'sh' 'cabal-install' 'alex' 'happy')
options=(strip !makeflags !distcc !emptydirs)
source=(https://repo.parabolagnulinux.org/other/pandoc-static/${_pkgname}-${pkgver}-1-any.src.tar.xz{,.sig}
SRCBUILD)
replaces=('pandoc')
provides=('pandoc')
optdepends=('texlive-most: for pdf creation')
# 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; do
# Skip already built
[ -d ${srcdir}/build/usr/lib/$_hkpkg ] && continue
pushd ${srcdir}/${_pkgname}-${pkgver}/${_hkpkg} >/dev/null
msg2 "Building $_hkpkg"
case $_hkpkg in
$_pkgname-$pkgver)
HOME=${srcdir}/${_pkgname}-${pkgver} \
cabal configure --prefix=/usr \
--libdir=${srcdir}/build/usr/lib -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 \
--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
sed "/fontenc/d" -i ${pkgdir}/usr/share/${_pkgname}-${pkgver}/data/templates/default.latex
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/
}
sha1sums=('4984149bad15e5b07594d130b4f9d2dad4286e67'
'SKIP'
'734e0b61b5a1f1ebf42b77c0b52ef18cd899f461')
sha256sums=('7d469701d3bc033dce2e12fca8460f0d17fdb980a65dd25f266ee8f6071f5830'
'SKIP'
'a4370706e79992e570334584f647121096ed9b439f4531bfd11da247acff782e')
|