wok annotate wkhtmltopdf/receipt @ rev 22760

updated findutils (4.6.0 -> 4.7.0)
author Hans-G?nter Theisgen
date Fri Jan 24 17:10:12 2020 +0100 (2020-01-24)
parents a78610b2eb47
children 5ea0ce1cecc0
rev   line source
pascal@17163 1 # SliTaz package receipt.
pascal@17163 2
pascal@17163 3 PACKAGE="wkhtmltopdf"
Hans-G?nter@22136 4 VERSION="0.12.5"
pascal@17163 5 CATEGORY="misc"
pascal@17163 6 SHORT_DESC="Tools to render HTML into PDF and various image formats."
pascal@17163 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@17163 8 LICENSE="LGPL3"
Hans-G?nter@22136 9 WEB_SITE="https://wkhtmltopdf.org/"
Hans-G?nter@22136 10
pascal@17163 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
Hans-G?nter@22136 12 WGET_URL="https://github.com/$PACKAGE/$PACKAGE/archive/$VERSION.tar.gz"
pascal@17163 13
Hans-G?nter@22136 14 DEPENDS="libQtCore libQtGui libQtNetwork libQtSvg libQtWebkit libQtXml"
Hans-G?nter@22136 15 BUILD_DEPENDS="python qmake Qt4-dev"
pascal@17163 16
pascal@17163 17 # Rules to configure and make the package.
pascal@17163 18 compile_rules()
pascal@17163 19 {
Hans-G?nter@22136 20 # cat > qt/configure <<EOT
Hans-G?nter@22136 21 ##!/bin/sh
Hans-G?nter@22136 22 #
Hans-G?nter@22136 23 #cd \$(dirname \$0)
Hans-G?nter@22136 24 #cd ..
Hans-G?nter@22136 25 #qmake wkhtmltopdf.pro
Hans-G?nter@22136 26 #EOT
Hans-G?nter@22136 27 # chmod +x qt/configure
Hans-G?nter@22136 28 # scripts/build.py posix-local
pascal@17163 29
Hans-G?nter@22136 30 qmake wkhtmltopdf.pro &&
pascal@17163 31 make &&
pascal@17163 32 make INSTALL_ROOT=$DESTDIR/usr install
pascal@17163 33 }
pascal@17163 34
pascal@17163 35 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@17163 36 genpkg_rules()
pascal@17163 37 {
pascal@17163 38 mkdir -p $fs/usr
Hans-G?nter@22136 39
Hans-G?nter@22136 40 cp -a $install/usr/bin $fs/usr
Hans-G?nter@22136 41 cp -a $install/usr/lib $fs/usr
pascal@17163 42 }