17 lines
477 B
Makefile
17 lines
477 B
Makefile
include $(CURDIR)/../Makefile.inc
|
|
|
|
VERSION = 7.0.3
|
|
URL = http://www.bacula-web.org/download.html?file=files/bacula-web.org/downloads/bacula-web-$(VERSION).tgz
|
|
PACKAGE = bacula-web-$(VERSION).tgz
|
|
|
|
all: manifest $(PACKAGES)/$(PACKAGE)
|
|
|
|
manifest: $(MANIFESTS)/bacula.pp
|
|
|
|
$(PACKAGES)/$(PACKAGE):
|
|
@umask 022 ; echo $@ ; \
|
|
curl -f -o $@ $(URL)
|
|
|
|
$(MANIFESTS)/bacula.pp: $(PACKAGES)/$(PACKAGE)
|
|
@umask 022 ; echo $@ ; \
|
|
echo '$$bacula_package_latest = "$(PACKAGE)"' > $@
|