17 lines
420 B
Makefile
17 lines
420 B
Makefile
include $(CURDIR)/../Makefile.inc
|
|
|
|
VERSION = 5.2.13-1
|
|
BASEURL = http://www.bacula-web.org/tl_files/downloads/
|
|
PACKAGE = bacula-web-$(VERSION).tar.gz
|
|
|
|
all: manifest $(PACKAGES)/$(PACKAGE)
|
|
|
|
manifest: $(MANIFESTS)/bacula.pp
|
|
|
|
$(PACKAGES)/$(PACKAGE):
|
|
@umask 022 ; echo $@ ; \
|
|
curl -o $@ $(BASEURL)/$(PACKAGE)
|
|
|
|
$(MANIFESTS)/bacula.pp:
|
|
@umask 022 ; echo $@ ; \
|
|
echo '$$bacula_package_latest = "$(PACKAGE)"' > $@
|