wok-current annotate 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
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/"
shann@25770 11 WGET_URL="http://deb.debian.org/debian/pool/main/p/$PACKAGE/procmail_3.22.orig.tar.gz"
pascal@2261 12 CONFIG_FILES="/etc/procmail*"
pascal@2261 13
shann@25770 14 HOST_ARCH="i486 x86_64"
shann@25770 15
pascal@24535 16 # What is the latest version available today?
pascal@24535 17 current_version()
pascal@24535 18 {
pascal@24535 19 wget -O - https://en.wikipedia.org/wiki/Procmail 2>/dev/null | \
pascal@24535 20 sed '/Final release/!d;s|.*release.*">||'
pascal@24535 21 }
pascal@24535 22
pascal@2261 23 # Rules to configure and make the package.
pascal@2261 24 compile_rules()
pascal@2261 25 {
pascal@2261 26 cd $src
pascal@4265 27 find -name '*.c' | xargs sed -i 's/getline/get_line/' src/formisc.h
pascal@2261 28 sed -i 's/exec <_autotst.rrr/cat _autotst.rrr |/' initmake
pascal@15375 29 yes '' | make VISIBLE_BINDIR=$DESTDIR/usr/bin
pascal@15375 30 make BINDIR=$DESTDIR/usr/bin install.bin
pascal@2261 31 }
pascal@2261 32
pascal@2261 33 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@2261 34 genpkg_rules()
pascal@2261 35 {
pascal@15375 36 cp -a $install/usr $fs
pascal@2261 37 }
pascal@2261 38