1d69650934
symlinks either use $(CP) or create them manually. Fixes #4399 git-svn-id: svn://svn.openwrt.org/openwrt/packages@13844 3c298f89-4303-0410-b956-a3cf2f4a3e73
65 lines
1.8 KiB
Makefile
65 lines
1.8 KiB
Makefile
#
|
|
# Copyright (C) 2008 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
# $Id$
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=libvorbis
|
|
PKG_VERSION:=1.2.0
|
|
PKG_RELEASE:=2
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=http://downloads.xiph.org/releases/vorbis/
|
|
PKG_MD5SUM:=478646358c49f34aedcce58948793619
|
|
PKG_FIXUP:=libtool
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
PKG_INSTALL=1
|
|
|
|
define Package/libvorbis
|
|
SECTION:=libs
|
|
CATEGORY:=Libraries
|
|
TITLE:=libvorbis
|
|
URL:=http://xiph.org/vorbis/
|
|
DEPENDS:=+libogg
|
|
endef
|
|
|
|
define Package/libvorbis/description
|
|
Vorbis is a general purpose audio and music encoding format
|
|
contemporary to MPEG-4's AAC and TwinVQ, the next generation beyond
|
|
MPEG audio layer 3. Unlike the MPEG sponsored formats (and other
|
|
proprietary formats such as RealAudio G2 and Windows' flavor of the
|
|
month), the Vorbis CODEC specification belongs to the public domain.
|
|
All the technical details are published and documented, and any
|
|
software entity may make full use of the format without license
|
|
fee, royalty or patent concerns.
|
|
endef
|
|
|
|
define Build/Configure
|
|
$(call Build/Configure/Default, \
|
|
--disable-oggtest \
|
|
)
|
|
endef
|
|
|
|
define Build/InstallDev
|
|
$(INSTALL_DIR) $(1)/usr/include/vorbis/
|
|
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/include/vorbis/* $(1)/usr/include/vorbis/
|
|
$(INSTALL_DIR) $(1)/usr/lib/
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/*.{so*,a,la} $(1)/usr/lib/
|
|
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig/
|
|
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/* $(1)/usr/lib/pkgconfig/
|
|
$(INSTALL_DIR) $(1)/usr/share/aclocal/
|
|
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/share/aclocal/* $(1)/usr/share/aclocal/
|
|
endef
|
|
|
|
define Package/libvorbis/install
|
|
$(INSTALL_DIR) $(1)/usr/lib/
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/*.so* $(1)/usr/lib/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,libvorbis))
|