Initial version of murmur module
This commit is contained in:
parent
313d847e6a
commit
4b0c766c5a
4 changed files with 337 additions and 0 deletions
18
murmur/Makefile
Normal file
18
murmur/Makefile
Normal file
|
@ -0,0 +1,18 @@
|
|||
include $(CURDIR)/../Makefile.inc
|
||||
|
||||
VERSION = 1.2.3
|
||||
|
||||
TARGET = murmur-static_x86-$(VERSION).tar.bz2
|
||||
SOURCE = http://downloads.sourceforge.net/project/mumble/Mumble/$(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 -o $@ $(SOURCE)
|
||||
|
||||
$(MANIFESTS)/murmur.pp: $(PACKAGES)/$(TARGET)
|
||||
@umask 022; echo $@; \
|
||||
echo '$$murmur_package_latest = "$(TARGET)"' > $@
|
Loading…
Add table
Add a link
Reference in a new issue