Merge pull request #776 from aTanW/master
[feed/packages.git] / libs / libvorbisidec / Makefile
1 #
2 # Copyright (C) 2006-2015 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=libvorbisidec
11 PKG_REV:=20150104
12 PKG_VERSION:=1.0.3-$(PKG_REV)
13 PKG_RELEASE:=1
14
15 PKG_SOURCE_PROTO:=git
16 PKG_SOURCE_URL:=git://git.xiph.org/tremor.git
17 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
18 PKG_SOURCE_VERSION:=b56ffce0c0773ec5ca04c466bc00b1bbcaf65aef
19 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
20
21 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
22
23 PKG_MAINTAINER:=Ted Hess <thess@kitschensync.net>
24
25 PKG_LICENSE:=BSD-3-Clause
26 PKG_LICENSE_FILES:=COPYING
27
28 PKG_FIXUP:=autoreconf
29 PKG_INSTALL:=1
30 PKG_USE_MIPS16:=0
31
32 include $(INCLUDE_DIR)/package.mk
33
34 define Package/libvorbisidec
35 SECTION:=libs
36 CATEGORY:=Libraries
37 TITLE:=A fixed-point Ogg/Vorbis decoder library
38 DEPENDS:= +libogg
39 URL:=http://wiki.xiph.org/index.php/Tremor
40 endef
41
42 define Package/libvorbisidec/description
43 libvorbisidec is "tremor", a fixed-point implementation of libvorbis.
44 It also has libogg built-in. It is suitable as a replacement for
45 libvorbis and libogg in tremor-aware applications.
46 Tremor is a decoder only.
47 endef
48
49 TARGET_CFLAGS += $(FPIC)
50 CONFIGURE_ARGS += --enable-shared --enable-static
51
52 define Build/InstallDev
53 $(INSTALL_DIR) $(1)/usr/include
54 $(CP) $(PKG_INSTALL_DIR)/usr/include/tremor $(1)/usr/include/
55 $(INSTALL_DIR) $(1)/usr/lib
56 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libvorbisidec.{a,so*} $(1)/usr/lib/
57 endef
58
59 define Package/libvorbisidec/install
60 $(INSTALL_DIR) $(1)/usr/lib
61 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libvorbisidec.so.* $(1)/usr/lib/
62 endef
63
64 $(eval $(call BuildPackage,libvorbisidec))