wok-6.x annotate procmail/receipt @ rev 19512
busybox: add hd (again)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Nov 22 15:47:28 2016 +0100 (2016-11-22) |
parents | c390c1a5e082 |
children | 7c0170dd3ecc |
rev | line source |
---|---|
pascal@2261 | 1 # SliTaz package receipt. |
pascal@2261 | 2 |
pascal@2261 | 3 PACKAGE="procmail" |
pascal@2261 | 4 VERSION="3.22" |
pascal@2261 | 5 CATEGORY="network" |
pascal@2261 | 6 SHORT_DESC="mail processing and SmartList mailing list suites." |
pascal@2261 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@15375 | 8 LICENSE="GPL2" |
pascal@2261 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@2261 | 10 WEB_SITE="http://www.procmail.org/" |
pascal@2261 | 11 WGET_URL="${WEB_SITE}$TARBALL" |
pascal@2261 | 12 CONFIG_FILES="/etc/procmail*" |
pascal@2261 | 13 |
pascal@2261 | 14 # Rules to configure and make the package. |
pascal@2261 | 15 compile_rules() |
pascal@2261 | 16 { |
pascal@2261 | 17 cd $src |
pascal@4265 | 18 find -name '*.c' | xargs sed -i 's/getline/get_line/' src/formisc.h |
pascal@2261 | 19 sed -i 's/exec <_autotst.rrr/cat _autotst.rrr |/' initmake |
pascal@15375 | 20 yes '' | make VISIBLE_BINDIR=$DESTDIR/usr/bin |
pascal@15375 | 21 make BINDIR=$DESTDIR/usr/bin install.bin |
pascal@2261 | 22 } |
pascal@2261 | 23 |
pascal@2261 | 24 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@2261 | 25 genpkg_rules() |
pascal@2261 | 26 { |
pascal@15375 | 27 cp -a $install/usr $fs |
pascal@2261 | 28 } |
pascal@2261 | 29 |