source: trunk/dnsbl/Makefile@ 36

Last change on this file since 36 was 36, checked in by Kris Deugau, 13 years ago

/trunk/dnsbl

w00t! SpamAssassin's DNSBL checking code mutated at some point in
the past to support bitmask-based DNSBLs up to 24 bits long. Altered
a few constants and the data tagging to tag org and block listme's
separately at the separate levels.

File size: 683 bytes
Line 
1# wrap'em up all neatlike
2# $Id$
3
4# reqs:
5# libnetaddr-ip-perl
6# libdbd-pg-perl
7# rbldnsd
8
9MANIFEST = \
10 browse.cgi check-iplist.pl delist-ip export-dnsbl index.shtml Makefile \
11 dnsbl.cgi DNSBL.pm dnsbl.sql templates/ addparents.sql setparents.pl
12
13PKGNAME=dnsbl
14VERSION=0.2.1
15
16all:
17
18dist:
19 mkdir $(PKGNAME)-$(VERSION)
20 tar -c --exclude .svn -f - $(MANIFEST) | (cd $(PKGNAME)-$(VERSION); tar xvf -)
21# /usr/bin/perl -p -e 's/#VERSION#/$(VERSION)/' < $(PKGNAME).spec > $(PKGNAME)-$(VERSION)/$(PKGNAME).spec
22 tar cvf $(PKGNAME)-$(VERSION).tar $(PKGNAME)-$(VERSION)
23 gzip -v -f -9 $(PKGNAME)-$(VERSION).tar
24 rm -rf $(PKGNAME)-$(VERSION)
25 # gpg --detach-sign $(PKGNAME)-$(VERSION).tar.gz
Note: See TracBrowser for help on using the repository browser.