wok view tidy-html5/receipt @ rev 20701

updated airgeddon (3.31 -> 8.12)
author Hans-G?nter Theisgen
date Tue Feb 05 17:16:21 2019 +0100 (2019-02-05)
parents
children f6746abf95cc
line source
1 # SliTaz package receipt.
3 PACKAGE="tidy-html5"
4 VERSION="5.1.25"
5 CATEGORY="development"
6 SHORT_DESC="The granddaddy of HTML tools, with support for modern standards"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="MIT"
9 WEB_SITE="http://www.htacg.org/tidy-html5/"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="https://github.com/htacg/tidy-html5/archive/$VERSION.tar.gz"
13 DEPENDS=""
14 BUILD_DEPENDS="cmake libxslt"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd build/cmake
20 cmake ../.. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release &&
21 make && make install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $install/usr/bin $fs/usr
29 }