2008-10-08 18:00:51 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006-2008 OpenWrt.org
|
2006-07-26 00:55:20 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=libaudiofile
|
|
|
|
PKG_VERSION:=0.2.6
|
2009-01-04 00:06:33 +00:00
|
|
|
PKG_RELEASE:=2
|
2006-07-26 00:55:20 +00:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=http://www.cti.ecp.fr/~beauxir5/peercast
|
|
|
|
PKG_MD5SUM:=460f848ce5f4a33ae66b15a4fb7720ec
|
2008-10-08 18:00:51 +00:00
|
|
|
PKG_FIXUP:=libtool
|
2006-07-26 00:55:20 +00:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
2008-10-08 16:01:55 +00:00
|
|
|
PKG_INSTALL=1
|
|
|
|
|
2006-07-26 00:55:20 +00:00
|
|
|
define Package/libaudiofile
|
|
|
|
SECTION:=libs
|
|
|
|
CATEGORY:=Libraries
|
|
|
|
TITLE:=Audio File library
|
|
|
|
URL:=http://www.68k.org/~michael/audiofile/
|
|
|
|
endef
|
|
|
|
|
2007-10-14 04:32:56 +00:00
|
|
|
define Package/libaudiofile/description
|
|
|
|
The audiofile library allows the processing of audio data to and from audio
|
|
|
|
files of many common formats (currently AIFF, AIFF-C, WAVE, NeXT/Sun, BICS,
|
|
|
|
and raw data).
|
|
|
|
endef
|
|
|
|
|
2008-08-06 22:43:15 +00:00
|
|
|
TARGET_CFLAGS += $(FPIC)
|
|
|
|
|
2006-07-26 00:55:20 +00:00
|
|
|
define Build/Configure
|
2006-10-28 22:43:08 +00:00
|
|
|
$(call Build/Configure/Default, \
|
|
|
|
--enable-shared \
|
|
|
|
--enable-static \
|
|
|
|
--with-build-cc="$(HOSTCC)" \
|
|
|
|
)
|
2006-07-26 00:55:20 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/InstallDev
|
2008-10-08 16:01:55 +00:00
|
|
|
$(INSTALL_DIR) $(2)/bin
|
|
|
|
$(INSTALL_BIN) \
|
|
|
|
$(PKG_INSTALL_DIR)/usr/bin/audiofile-config \
|
|
|
|
$(2)/bin/
|
|
|
|
$(SED) \
|
|
|
|
's,^\(prefix\|exec_prefix\)=.*,\1=$(STAGING_DIR)/usr,g' \
|
|
|
|
$(2)/bin/audiofile-config
|
|
|
|
|
|
|
|
$(INSTALL_DIR) $(1)/usr/include
|
|
|
|
$(INSTALL_DATA) \
|
|
|
|
$(PKG_INSTALL_DIR)/usr/include/{af_vfs,audiofile,aupvlist}.h \
|
|
|
|
$(1)/usr/include/
|
|
|
|
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
2009-01-04 00:06:33 +00:00
|
|
|
$(CP) \
|
|
|
|
$(PKG_INSTALL_DIR)/usr/lib/libaudiofile.{la,a,so*} \
|
2008-10-08 16:01:55 +00:00
|
|
|
$(1)/usr/lib/
|
|
|
|
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig
|
|
|
|
$(INSTALL_DATA) \
|
|
|
|
$(PKG_INSTALL_DIR)/usr/lib/pkgconfig/audiofile.pc \
|
|
|
|
$(1)/usr/lib/pkgconfig/
|
2006-07-26 00:55:20 +00:00
|
|
|
endef
|
|
|
|
|
2006-10-28 22:43:08 +00:00
|
|
|
define Package/libaudiofile/install
|
2006-11-23 00:29:07 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
2009-01-04 00:06:33 +00:00
|
|
|
$(CP) \
|
2008-10-08 16:01:55 +00:00
|
|
|
$(PKG_INSTALL_DIR)/usr/lib/libaudiofile.so.* \
|
|
|
|
$(1)/usr/lib/
|
2006-10-28 22:43:08 +00:00
|
|
|
endef
|
|
|
|
|
2006-07-26 00:55:20 +00:00
|
|
|
$(eval $(call BuildPackage,libaudiofile))
|