da32c7ca2d
Commit 1dc19c445
(split tremor into its own package) unfortunately
broke the svn checkout step (but normally not noticable as we have
a tarball on sources.buildroot.net that will get downloaded instead).
Fix it by using a custom download step, and remove unused variables
while we're at it.
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
24 lines
740 B
Makefile
24 lines
740 B
Makefile
############################################################
|
|
#
|
|
# Tremor (Integer decoder for Vorbis)
|
|
#
|
|
############################################################
|
|
|
|
TREMOR_SITE:=http://svn.xiph.org/trunk/Tremor/
|
|
TREMOR_VERSION:=16259
|
|
TREMOR_SVNDIR = Tremor-svn-r$(TREMOR_VERSION)
|
|
TREMOR_SOURCE:= $(TREMOR_SVNDIR).tar.bz2
|
|
TREMOR_AUTORECONF = YES
|
|
TREMOR_INSTALL_STAGING = YES
|
|
TREMOR_INSTALL_TARGET = YES
|
|
|
|
$(DL_DIR)/$(TREMOR_SOURCE):
|
|
$(SVN_CO) -r $(TREMOR_VERSION) $(TREMOR_SITE) $(BUILD_DIR)/$(TREMOR_SVNDIR)
|
|
tar -cv -C $(BUILD_DIR) $(TREMOR_SVNDIR) | bzip2 - -c > $@
|
|
rm -rf $(BUILD_DIR)/$(TREMOR_SVNDIR)
|
|
|
|
# use custom download step
|
|
TREMOR_TARGET_SOURCE := $(DL_DIR)/$(TREMOR_SOURCE)
|
|
|
|
$(eval $(call AUTOTARGETS,package/multimedia,tremor))
|