[packages] wxbase: fix build with native toolchain
[packages.git] / libs / libogg / Makefile
1 #
2 # Copyright (C) 2008 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:=libogg
11 PKG_VERSION:=1.1.4
12 PKG_RELEASE:=2
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://downloads.xiph.org/releases/ogg/
16 PKG_MD5SUM:=10200ec22543841d9d1c23e0aed4e5e9
17
18 PKG_FIXUP:=libtool
19 PKG_INSTALL:=1
20
21 include $(INCLUDE_DIR)/package.mk
22
23 define Package/libogg
24   SECTION:=libs
25   CATEGORY:=Libraries
26   TITLE:=libogg
27   URL:=http://xiph.org/ogg/
28 endef
29
30 define Package/libogg/description
31 Ogg project codecs use the Ogg bitstream format to arrange the raw,
32 compressed bitstream into a more robust, useful form.  For example,
33 the Ogg bitstream makes seeking, time stamping and error recovery
34 possible, as well as mixing several sepearate, concurrent media
35 streams into a single physical bitstream.
36 endef
37
38 define Build/InstallDev
39         $(INSTALL_DIR) $(1)/usr/include/ogg/
40         $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/include/ogg/* $(1)/usr/include/ogg/
41         $(INSTALL_DIR) $(1)/usr/lib/
42         $(CP) $(PKG_INSTALL_DIR)/usr/lib/*.{so*,a,la} $(1)/usr/lib/
43         $(INSTALL_DIR) $(1)/usr/lib/pkgconfig/
44         $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/* $(1)/usr/lib/pkgconfig/
45         $(INSTALL_DIR) $(1)/usr/share/aclocal/
46         $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/share/aclocal/* $(1)/usr/share/aclocal/
47 endef
48
49 define Package/libogg/install
50         $(INSTALL_DIR) $(1)/usr/lib/
51         $(CP) $(PKG_INSTALL_DIR)/usr/lib/*.so.* $(1)/usr/lib/
52 endef
53
54 $(eval $(call BuildPackage,libogg))