wok view libxslt/receipt @ rev 2613

get-flash-plugin: export firefox libraries (fix)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Apr 11 17:12:49 2009 +0000 (2009-04-11)
parents acceac334d59
children 495272e1b6f6
line source
1 # SliTaz package receipt.
3 PACKAGE="libxslt"
4 VERSION="1.1.22"
5 CATEGORY="system-tools"
6 SHORT_DESC="XSLT support for libxml2."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="libgcrypt libxml2 zlib"
9 BUILD_DEPENDS="libxml2-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.xmlsoft.org/XSLT/"
12 WGET_URL="ftp://xmlsoft.org/libxslt/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --infodir=/usr/share/info \
21 --mandir=/usr/share/man \
22 --with-html-dir=/usr/share/doc \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib/libxslt-plugins
32 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
33 cp -a $_pkg/usr/bin $fs/usr
34 rm $fs/usr/bin/xslt-config
35 strip -s $fs/usr/lib/* 2>/dev/null
36 strip -s $fs/usr/bin/* 2>/dev/null
37 }