wok diff libcroco/receipt @ rev 12191
Add pwauth (use system passwd to auth user, maybe used in our CGI tools)
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Mon Mar 26 01:27:26 2012 +0200 (2012-03-26) |
parents | |
children | 481017e94c90 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/libcroco/receipt Mon Mar 26 01:27:26 2012 +0200 1.3 @@ -0,0 +1,31 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="libcroco" 1.7 +VERSION="0.6.2" 1.8 +CATEGORY="system-tools" 1.9 +SHORT_DESC="Cascading Style Sheet (CSS) parsing and manipulation toolkit." 1.10 +MAINTAINER="pankso@slitaz.org" 1.11 +DEPENDS="libxml2 glib zlib" 1.12 +BUILD_DEPENDS="libxml2-dev glib-dev zlib-dev" 1.13 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.14 +WEB_SITE="http://www.freespiders.org/projects/libcroco/" 1.15 +WGET_URL="ftp://ftp.gnome.org/pub/GNOME/sources/libcroco/0.6/$TARBALL" 1.16 + 1.17 +# Rules to configure and make the package. 1.18 +compile_rules() 1.19 +{ 1.20 + cd $src 1.21 + ./configure \ 1.22 + --prefix=/usr \ 1.23 + $CONFIGURE_ARGS && 1.24 + make && 1.25 + make DESTDIR=$PWD/_pkg install 1.26 +} 1.27 + 1.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.29 +genpkg_rules() 1.30 +{ 1.31 + mkdir -p $fs/usr/lib $fs/usr/bin 1.32 + cp $_pkg/usr/bin/csslint* $fs/usr/bin 1.33 + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 1.34 +}