wok-current view procmail/receipt @ rev 25786
Bump gvfs to fix issue with open files on android device, patch udev to fix mtp issue on pcmanfm
| author | Stanislas Leduc <shann@slitaz.org> |
|---|---|
| date | Tue Jul 29 18:05:13 2025 +0000 (3 months ago) |
| parents | 7c0170dd3ecc |
| children | 1fc2775ee19c |
line source
1 # SliTaz package receipt.
3 PACKAGE="procmail"
4 VERSION="3.22"
5 CATEGORY="network"
6 SHORT_DESC="mail processing and SmartList mailing list suites."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.procmail.org/"
11 WGET_URL="http://deb.debian.org/debian/pool/main/p/$PACKAGE/procmail_3.22.orig.tar.gz"
12 CONFIG_FILES="/etc/procmail*"
14 HOST_ARCH="i486 x86_64"
16 # What is the latest version available today?
17 current_version()
18 {
19 wget -O - https://en.wikipedia.org/wiki/Procmail 2>/dev/null | \
20 sed '/Final release/!d;s|.*release.*">||'
21 }
23 # Rules to configure and make the package.
24 compile_rules()
25 {
26 cd $src
27 find -name '*.c' | xargs sed -i 's/getline/get_line/' src/formisc.h
28 sed -i 's/exec <_autotst.rrr/cat _autotst.rrr |/' initmake
29 yes '' | make VISIBLE_BINDIR=$DESTDIR/usr/bin
30 make BINDIR=$DESTDIR/usr/bin install.bin
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 cp -a $install/usr $fs
37 }