18 lines
517 B
Makefile
18 lines
517 B
Makefile
include $(CURDIR)/../Makefile.inc
|
|
|
|
VERSION = 1.2.9
|
|
|
|
TARGET = murmur-static_x86-$(VERSION).tar.bz2
|
|
SOURCE = https://github.com/mumble-voip/mumble/releases/download/$(VERSION)/murmur-static_x86-$(VERSION).tar.bz2
|
|
|
|
all: download manifest
|
|
download: $(PACKAGES)/$(TARGET)
|
|
manifest: $(MANIFESTS)/murmur.pp
|
|
|
|
$(PACKAGES)/$(TARGET):
|
|
@umask 022; echo $@; \
|
|
test -f $@ || curl -f -L -o $@ $(SOURCE)
|
|
|
|
$(MANIFESTS)/murmur.pp: $(PACKAGES)/$(TARGET)
|
|
@umask 022; echo $@; \
|
|
echo '$$murmur_package_latest = "$(TARGET)"' > $@
|