]> git.proxmox.com Git - proxmox-spamassassin.git/blob - Makefile
bump version to 4.0.0-5
[proxmox-spamassassin.git] / Makefile
1 # howto add rule updates:
2 # edit paths ($srcdir) in changes.pl
3 # update changes.diff - verify changes!
4
5 # dig -t any 2.4.3.updates.spamassassin.org
6 # wget http://spamassassin.kluge.net/updates/501214.tar.gz
7 # wget http://spamassassin.kluge.net/updates/501214.tar.gz.asc
8 # gpg --verify 501214.tar.gz.asc 501214.tar.gz
9 #
10 # or just use: make sa-updates.tgz (from the last stable version)
11 # warning: start with an empty sa-updates.tgz, install the package,
12 # the run sa-update to generate the updates
13 #
14 # Note: we also add KAM.cf from
15 # http://www.pccc.com/downloads/SpamAssassin/contrib/KAM.cf
16 #
17 # edit debin/rules to apply updates
18
19 PKGREL=2
20 SAVER=3.4.2
21 OPKGNAME = Mail-SpamAssassin-${SAVER}
22 NPKGNAME = proxmox-spamassassin_${SAVER}
23 DEB = proxmox-spamassassin_${SAVER}-${PKGREL}_amd64.deb
24
25 EXTRA_RULES = KAM.cf
26
27 #${DEB}: ${OPKGNAME}.tar.gz
28 ${DEB}: ${OPKGNAME}.tar.gz sa-updates.tgz ${EXTRA_RULES}
29 -rm -rf ${OPKGNAME} ${NPKGNAME}
30 tar xzf ${OPKGNAME}.tar.gz
31 mv ${OPKGNAME} ${NPKGNAME}
32 cp -a debian ${NPKGNAME}
33 mkdir ${NPKGNAME}/extra_rules
34 cp ${EXTRA_RULES} ${NPKGNAME}/extra_rules
35 cd ${NPKGNAME}; dpkg-buildpackage -us -uc -rfakeroot
36 -rm -rf ${OPKGNAME} ${NPKGNAME}
37 lintian ${DEB}
38
39 KAM.cf:
40 wget http://www.pccc.com/downloads/SpamAssassin/contrib/KAM.cf -O $@.tmp
41 mv KAM.cf.tmp $@
42
43 sa-updates.tgz:
44 rm -rf updates.tmp
45 sa-update --updatedir updates.tmp --channel updates.spamassassin.org
46 tar cvzf sa-updates.tgz --exclude=local.cf --exclude=regression_tests.cf --exclude=*.txt --exclude=MIRRORED.BY -C updates.tmp/updates_spamassassin_org/ .
47
48 .PHONY: upload
49 upload: ${DEB}
50 tar cf - ${DEB} | ssh -X repoman@repo.proxmox.com -- upload --product pmg --dist stretch
51
52 CLEANFILES = *~ debian/*~ *.deb proxmox-spamassassin_* updates.tmp
53
54 .PHONY: clean
55 clean:
56 rm -rf ${CLEANFILES}
57
58 .PHONY: dinstall
59 dinstall: ${DEB}
60 dpkg -i ${DEB}