kumquat-buildroot/package/multimedia/tremor/tremor.mk
Sven Neumann 1dc19c4457 libvorbis: split tremor into its own package
This commit splits the Tremor fixed-point implementation
out of the libvorbis package and creates a new package
called 'tremor' for it.

Signed-off-by: Sven Neumann <s.neumann@raumfeld.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-12-08 21:48:46 +01:00

32 lines
870 B
Makefile

############################################################
#
# Tremor (Integer decoder for Vorbis)
#
############################################################
TREMOR_TRUNK:=http://svn.xiph.org/trunk/Tremor/
TREMOR_VERSION:=16259
TREMOR_NAME:=Tremor-svn-r$(TREMOR_VERSION)
TREMOR_DIR:=$(BUILD_DIR)/$(TREMOR_NAME)
TREMOR_SOURCE:=$(TREMOR_NAME).tar.bz2
TREMOR_CAT=$(BZCAT)
TREMOR_AUTORECONF = YES
TREMOR_INSTALL_STAGING = YES
TREMOR_INSTALL_TARGET = YES
$(DL_DIR)/$(TREMOR_SOURCE):
$(SVN_CO) -r $(TREMOR_VERSION) $(TREMOR_TRUNK) $(TREMOR_DIR)
tar -cv -C $(BUILD_DIR) $(TREMOR_NAME) | bzip2 - -c > $@
$(eval $(call AUTOTARGETS,package/multimedia,tremor))
############################################################
#
# Toplevel Makefile options
#
############################################################
ifeq ($(BR2_PACKAGE_TREMOR),y)
TARGETS+=tremor
endif