2 CURL := curl -H Pragma: -O -R -S --fail --show-error
5 # default - overridden by the build
8 #main.URL := http://build.planet-lab.org/third-party/zabbix-1.6.2.tar.gz
9 #main.SHA1SUM := 575c443adec1703c2c242dbf353de9dc3bb4cafb
10 main.URL := http://build.planet-lab.org/third-party/zabbix-1.6.5.tar.gz
11 main.SHA1SUM := b4a224cd9037911c1e68799a13518896de675d3d
12 main.FILE := $(notdir $(main.URL))
14 # Thierry - when called from within the build, PWD is /build
15 SOURCEFILES := $(main.FILE)
18 @if [ ! -e "$@" ] ; then echo "$(CURL) $(main.URL)" ; $(CURL) $(main.URL) ; fi
19 @if [ ! -e "$@" ] ; then echo "Could not download source file: $@ does not exist" ; exit 1 ; fi
20 @if test "$$(sha1sum $@ | awk '{print $$1}')" != "$(main.SHA1SUM)" ; then \
21 echo "sha1sum of the downloaded $@ does not match the one from 'sources' file" ; \
22 echo "Local copy: $$(sha1sum $@)" ; \
23 echo "In sources: $$(grep $@ sources)" ; \
29 sources: $(SOURCEFILES)
34 RPMDIRDEFS = --define "_sourcedir $(PWD)" --define "_builddir $(PWD)" --define "_srcrpmdir $(PWD)" --define "_rpmdir $(PWD)"
37 rpmbuild $(RPMDIRDEFS) $(RPMDEFS) --nodeps -bp --target $(PREPARCH) $(SPECFILE)
40 rpmbuild $(RPMDIRDEFS) $(RPMDEFS) --nodeps -bs $(SPECFILE)
42 TARGET ?= $(shell uname -m)
44 rpmbuild $(RPMDIRDEFS) $(RPMDEFS) --nodeps --target $(TARGET) -bb $(SPECFILE)
47 rm -f *.rpm *.tgz *.bz2 *.gz