Makefile cleanups, round 5
[packages.git] / libs / libvorbisidec / Makefile
1
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=libvorbisidec
12 PKG_VERSION:=1.0.2+svn14261
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).orig.tar.gz
16 PKG_SOURCE_URL:=http://ftp.de.debian.org/debian/pool/main/libv/libvorbisidec/
17 PKG_MD5SUM:=bc617d4af1cd74b38d7c51451dd6eff0
18
19 PKG_FIXUP = libtool
20
21 include $(INCLUDE_DIR)/package.mk
22
23 define Package/libvorbisidec
24   SECTION:=libs
25   CATEGORY:=Libraries
26   TITLE:=A fixed-point Ogg/Vorbis decoder library
27   URL:=http://wiki.xiph.org/index.php/Tremor
28 endef
29
30 define Package/libvorbisidec/description
31         libvorbisidec is "tremor", a fixed-point implementation of libvorbis.
32         It also has libogg built-in. It is suitable as a replacement for 
33         libvorbis and libogg in tremor-aware applications.
34         Tremor is a decoder only.
35 endef
36
37 define Build/Configure
38         (cd $(PKG_BUILD_DIR); ./autogen.sh );
39         $(call Build/Configure/Default, \
40                 --enable-shared \
41                 --enable-static \
42         )
43 endef
44
45 define Build/Compile
46         $(MAKE) -C $(PKG_BUILD_DIR) \
47                 DESTDIR="$(PKG_INSTALL_DIR)" \
48                 all install
49 endef
50
51 define Build/InstallDev
52         mkdir -p $(1)/usr/include
53         $(CP) $(PKG_INSTALL_DIR)/usr/include/tremor $(1)/usr/include/
54         mkdir -p $(1)/usr/lib
55         $(CP) $(PKG_INSTALL_DIR)/usr/lib/libvorbisidec.{a,so*} $(1)/usr/lib/
56 endef
57
58 define Package/libvorbisidec/install
59         $(INSTALL_DIR) $(1)/usr/lib
60         $(CP) $(PKG_INSTALL_DIR)/usr/lib/libvorbisidec.so.* $(1)/usr/lib/
61 endef
62
63 $(eval $(call BuildPackage,libvorbisidec))