Merge pull request #817 from LuaAndC/package-updaters

Package updaters for jack, libdca, libwebsockets
This commit is contained in:
Tony Theodore 2015-09-03 22:53:33 +10:00
commit 426a622069
3 changed files with 9 additions and 6 deletions

View File

@ -11,8 +11,9 @@ $(PKG)_URL := https://dl.dropboxusercontent.com/u/28869550/$($(PKG)_FILE)
$(PKG)_DEPS := gcc libsamplerate libgnurx portaudio libsndfile winpthreads
define $(PKG)_UPDATE
echo 'TODO: write update script for $(PKG).' >&2;
echo $($(PKG)_VERSION)
$(WGET) -q -O- 'http://jackaudio.org/downloads/' | \
$(SED) -n 's,.*jack-\([0-9][^"]*\)\.tar.*,\1,p' | \
head -1
endef
define $(PKG)_BUILD

View File

@ -11,8 +11,9 @@ $(PKG)_URL := http://download.videolan.org/pub/videolan/libdca/$($(PKG)_VER
$(PKG)_DEPS := gcc
define $(PKG)_UPDATE
echo 'TODO: write update script for libdca.' >&2;
echo $(libdca_VERSION)
$(WGET) -q -O- 'https://www.videolan.org/developers/libdca.html' | \
$(SED) -n 's,.*libdca-\([0-9][^"]*\)\.tar.*,\1,p' | \
head -1
endef
define $(PKG)_BUILD

View File

@ -11,8 +11,9 @@ $(PKG)_URL := http://git.libwebsockets.org/cgi-bin/cgit/libwebsockets/snaps
$(PKG)_DEPS := gcc openssl zlib
define $(PKG)_UPDATE
echo 'TODO: write update script for libwebsockets.' >&2;
echo $(libwebsockets_VERSION)
$(WGET) -q -O- 'http://git.libwebsockets.org/cgi-bin/cgit/libwebsockets/' | \
$(SED) -n 's,.*libwebsockets-\([0-9][^"]*\)\.tar.*,\1,p' | \
head -1
endef
define $(PKG)_BUILD