wok-6.x diff tidy/receipt @ rev 14838
xfdesktop: update bdeps
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Jul 17 16:35:50 2013 +0200 (2013-07-17) |
parents | |
children | 7cf304e72e40 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/tidy/receipt Wed Jul 17 16:35:50 2013 +0200 1.3 @@ -0,0 +1,34 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="tidy" 1.7 +VERSION="cvs_20101110" 1.8 +CATEGORY="development" 1.9 +SHORT_DESC="HTML Tidy" 1.10 +MAINTAINER="al.bobylev@gmail.com" 1.11 +LICENSE="MIT" 1.12 +WEB_SITE="http://tidy.sourceforge.net/" 1.13 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.14 +WGET_URL="http://anduin.linuxfromscratch.org/sources/BLFS/svn/t/$TARBALL" 1.15 + 1.16 +DEPENDS="glibc-base" 1.17 + 1.18 +# Rules to configure and make the package. 1.19 +compile_rules() 1.20 +{ 1.21 + ./configure \ 1.22 + --disable-debug \ 1.23 + --disable-static \ 1.24 + --enable-access \ 1.25 + --enable-utf16 \ 1.26 + --enable-asian && 1.27 + make && 1.28 + make install 1.29 +} 1.30 + 1.31 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.32 +genpkg_rules() 1.33 +{ 1.34 + mkdir -p $fs/usr/lib 1.35 + cp -a $install/usr/bin $fs/usr 1.36 + cp -a $install/usr/lib/*.so* $fs/usr/lib 1.37 +}