wok-next annotate tidy/receipt @ rev 20143

postgresql: receipt v2
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Nov 01 11:18:25 2017 +0100 (2017-11-01)
parents d805d3de4546
children 10df65db91ad
rev   line source
al@19957 1 # SliTaz package receipt v2.
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@19957 10
al@14468 11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
al@14468 12 WGET_URL="http://anduin.linuxfromscratch.org/sources/BLFS/svn/t/$TARBALL"
al@14468 13
al@19957 14 SPLIT="tidy-dev"
al@14468 15
al@19957 16 compile_rules() {
al@14468 17 ./configure \
al@14468 18 --disable-debug \
al@14468 19 --disable-static \
al@14468 20 --enable-access \
al@14468 21 --enable-utf16 \
al@14468 22 --enable-asian &&
al@14468 23 make &&
al@14468 24 make install
al@14468 25 }
al@14468 26
al@19957 27 genpkg_rules() {
al@19957 28 case $PACKAGE in
al@19957 29 tidy) copy @std;;
al@19957 30 *-dev) copy @dev;;
al@19957 31 esac
al@14468 32 }