wok view tidy/receipt @ rev 16958
Add mate-common-dev and mate-desktop-dev
author | Yuri Pourre <yuripourre@gmail.com> |
---|---|
date | Mon Jul 28 20:21:05 2014 -0300 (2014-07-28) |
parents | |
children | 7cf304e72e40 |
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"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 ./configure \
19 --disable-debug \
20 --disable-static \
21 --enable-access \
22 --enable-utf16 \
23 --enable-asian &&
24 make &&
25 make install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $install/usr/bin $fs/usr
33 cp -a $install/usr/lib/*.so* $fs/usr/lib
34 }