wok-next annotate html2text/receipt @ rev 21229

updated clamav (0.99.4 -> 0.101.1)
author Hans-G?nter Theisgen
date Tue Dec 03 16:54:38 2019 +0100 (2019-12-03)
parents d6378d455338
children
rev   line source
al@18840 1 # SliTaz package receipt.
al@18840 2
al@18840 3 PACKAGE="html2text"
al@18840 4 VERSION="1.3.2a"
al@18840 5 CATEGORY="utilities"
al@18840 6 SHORT_DESC="Command line utility that converts HTML into plain text"
al@18840 7 MAINTAINER="al.bobylev@gmail.com"
al@18840 8 LICENSE="GPL"
al@18840 9 WEB_SITE="http://www.mbayer.de/html2text/"
al@21020 10
al@18840 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
al@18840 12 WGET_URL="http://ftp.ibiblio.org/pub/linux/apps/www/converters/$TARBALL"
al@18840 13
al@21020 14 compile_rules() {
al@18840 15 ./configure $CONFIGURE_ARGS
al@18840 16 sed -i 's|/usr/local/bin|/usr/bin|; s|/usr/local/man|/usr/share/man|;
al@18840 17 s|$(BINDIR)|$(DESTDIR)&|; s|$(MANDIR)|$(DESTDIR)&|; s|$(DOCDIR)|$(DESTDIR)&|' \
al@18840 18 $src/Makefile
al@18840 19 make
al@18840 20 mkdir -p $install/usr/bin $install/usr/share/man/man1 \
al@18840 21 $install/usr/share/man/man5
al@18840 22 make install
al@18840 23 }
al@18840 24
al@21020 25 genpkg_rules() {
al@18840 26 cp -a $install/* $fs
al@18840 27 rm -r $fs/usr/share/doc
al@18840 28 }