wok view tidy/receipt @ rev 21490

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