wok annotate 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
rev   line source
yuripourre@17815 1 # SliTaz package receipt.
yuripourre@17815 2 # Forked from https://gitorious.org/chakra-packages/platform/source/89f5fdf6ea894c3a187beb7833dfc5ff41875ba6:xmlto/PKGBUILD
yuripourre@17815 3
yuripourre@17815 4 PACKAGE="xmlto"
yuripourre@17815 5 VERSION="0.0.26"
yuripourre@17815 6 CATEGORY="utilities"
yuripourre@17815 7 LICENSE="GPL"
yuripourre@17815 8 SHORT_DESC="Tool to convert xml to many other formats."
yuripourre@17815 9 MAINTAINER="yuripourre@gmail.com"
yuripourre@17815 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
yuripourre@17815 11 WEB_SITE="http://cyberelk.net/tim/software/xmlto/"
yuripourre@17815 12 WGET_URL="https://fedorahosted.org/releases/x/m/$PACKAGE/$TARBALL"
yuripourre@17815 13
yuripourre@17818 14 DEPENDS="libxslt perl-yaml-syck perl-test-pod bash"
yuripourre@17817 15 BUILD_DEPENDS="docbook-xsl util-linux-getopt"
yuripourre@17815 16
yuripourre@17815 17 # Rules to configure and make the package.
yuripourre@17815 18 compile_rules()
yuripourre@17815 19 {
yuripourre@17815 20 ./configure BASH=/bin/bash \
yuripourre@17815 21 --prefix=/usr \
yuripourre@17815 22 --mandir=/usr/share/man || return 1 \
yuripourre@17815 23 $CONFIGURE_ARGS &&
yuripourre@17815 24 make &&
yuripourre@17815 25 make DESTDIR=$DESTDIR install
yuripourre@17815 26 }
yuripourre@17815 27
yuripourre@17815 28 genpkg_rules()
yuripourre@17815 29 {
yuripourre@17815 30 mkdir -p $fs/usr
yuripourre@17815 31 cp -a $install/usr/bin $fs/usr
yuripourre@17815 32 }