wok view opendkim/receipt @ rev 25695

sc-im: replaced released version by development version
author Hans-G?nter Theisgen
date Fri Apr 26 08:13:41 2024 +0100 (5 weeks ago)
parents 114eed575c11
children
line source
1 # SliTaz package receipt.
3 PACKAGE="opendkim"
4 VERSION="2.10.3"
5 CATEGORY="network"
6 SHORT_DESC="DKIM library, MTA filter implementation and associated tools."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="BSD"
9 WEB_SITE="http://www.opendkim.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 DEPENDS="libbsd libssl"
15 BUILD_DEPENDS="libbsd openssl-dev"
17 # What is the latest version available today?
18 current_version()
19 {
20 wget -O - https://sourceforge.net/projects/opendkim/files/ 2>/dev/null | \
21 sed '/scope="row/!d;/opendkim-/!d;s|.*dkim-||;s|.tar.*||;q'
22 }
24 # Rules to configure and make the package.
25 compile_rules()
26 {
27 # The default --enable-filer neads milter
28 ./configure --disable-filter \
29 --sysconfdir=/etc \
30 $CONFIGURE_ARGS &&
31 make &&
32 make DESTDIR=$DESTDIR install
33 }
35 # Rules to gen a SliTaz package suitable for Tazpkg.
36 genpkg_rules()
37 {
38 mkdir -p $fs/usr/lib $fs/etc
39 cp -a $src/opendkim/opendkim.conf.sample $fs/etc/opendkim.conf
40 cp -a $install/usr/lib/lib*.so* $fs/usr/lib
41 cp -a $install/usr/sbin $fs/usr
42 }