wok view libxslt/receipt @ rev 15969

openssl: up to 1.0.1f + add to ARM arch (almost rewrite receipt)
author Christophe Lincoln <pankso@slitaz.org>
date Mon Feb 24 23:42:48 2014 +0100 (2014-02-24)
parents 09959b49f7da
children 010bb8c2c4ac
line source
1 # SliTaz package receipt.
3 PACKAGE="libxslt"
4 VERSION="1.1.26"
5 CATEGORY="system-tools"
6 SHORT_DESC="XSLT support for libxml2."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="MIT"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.xmlsoft.org/XSLT/"
11 WGET_URL="ftp://xmlsoft.org/libxslt/$TARBALL"
12 HOST_ARCH="i486 arm"
14 DEPENDS="libgcrypt libxml2 zlib"
15 BUILD_DEPENDS="libgcrypt-dev libxml2-dev zlib-dev python-dev"
17 case "$ARCH" in
18 arm) BUILD_DEPENDS="libxml2-dev" ;;
19 esac
21 # Rules to configure and make the package.
22 compile_rules()
23 {
24 cd $src
25 ./configure $CONFIGURE_ARGS &&
26 make &&
27 make install 2>&1 | grep -v 'html/index.sgml'
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib/libxslt-plugins
34 cp -a $install/usr/lib/*.so* $fs/usr/lib
35 cp -a $install/usr/bin $fs/usr
36 rm $fs/usr/bin/xslt-config
37 }