wok view xmlto/receipt @ rev 17914

Add fontforge and its depends (libspiro, libuninameslist).
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Apr 09 03:26:48 2015 +0300 (2015-04-09)
parents f968926ace87
children 9568a9188f04
line source
1 # SliTaz package receipt.
2 # Forked from https://gitorious.org/chakra-packages/platform/source/89f5fdf6ea894c3a187beb7833dfc5ff41875ba6:xmlto/PKGBUILD
4 PACKAGE="xmlto"
5 VERSION="0.0.26"
6 CATEGORY="utilities"
7 LICENSE="GPL"
8 SHORT_DESC="Tool to convert xml to many other formats."
9 MAINTAINER="yuripourre@gmail.com"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://cyberelk.net/tim/software/xmlto/"
12 WGET_URL="https://fedorahosted.org/releases/x/m/$PACKAGE/$TARBALL"
14 DEPENDS="libxslt perl-yaml-syck perl-test-pod bash"
15 BUILD_DEPENDS="docbook-xsl util-linux-getopt"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure BASH=/bin/bash \
21 --prefix=/usr \
22 --mandir=/usr/share/man || return 1 \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$DESTDIR install
26 }
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $install/usr/bin $fs/usr
32 }