wok-6.x annotate tidy/receipt @ rev 17939
partimage: fix post_install
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Apr 15 09:53:08 2015 +0200 (2015-04-15) |
parents | |
children | 7cf304e72e40 |
rev | line source |
---|---|
al@14468 | 1 # SliTaz package receipt. |
al@14468 | 2 |
al@14468 | 3 PACKAGE="tidy" |
al@14468 | 4 VERSION="cvs_20101110" |
al@14468 | 5 CATEGORY="development" |
al@14468 | 6 SHORT_DESC="HTML Tidy" |
al@14468 | 7 MAINTAINER="al.bobylev@gmail.com" |
al@14468 | 8 LICENSE="MIT" |
al@14468 | 9 WEB_SITE="http://tidy.sourceforge.net/" |
al@14468 | 10 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
al@14468 | 11 WGET_URL="http://anduin.linuxfromscratch.org/sources/BLFS/svn/t/$TARBALL" |
al@14468 | 12 |
al@14468 | 13 DEPENDS="glibc-base" |
al@14468 | 14 |
al@14468 | 15 # Rules to configure and make the package. |
al@14468 | 16 compile_rules() |
al@14468 | 17 { |
al@14468 | 18 ./configure \ |
al@14468 | 19 --disable-debug \ |
al@14468 | 20 --disable-static \ |
al@14468 | 21 --enable-access \ |
al@14468 | 22 --enable-utf16 \ |
al@14468 | 23 --enable-asian && |
al@14468 | 24 make && |
al@14468 | 25 make install |
al@14468 | 26 } |
al@14468 | 27 |
al@14468 | 28 # Rules to gen a SliTaz package suitable for Tazpkg. |
al@14468 | 29 genpkg_rules() |
al@14468 | 30 { |
al@14468 | 31 mkdir -p $fs/usr/lib |
al@14468 | 32 cp -a $install/usr/bin $fs/usr |
al@14468 | 33 cp -a $install/usr/lib/*.so* $fs/usr/lib |
al@14468 | 34 } |