2008-10-08 18:00:51 +00:00
|
|
|
#
|
2010-04-19 07:27:34 +00:00
|
|
|
# Copyright (C) 2006-2010 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
|
|
|
|
|
2010-04-19 07:27:34 +00:00
|
|
|
PKG_NAME:=audiofile
|
|
|
|
PKG_VERSION:=0.2.7
|
|
|
|
PKG_RELEASE:=1
|
2006-07-26 00:55:20 +00:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
2010-04-19 07:27:34 +00:00
|
|
|
PKG_SOURCE_URL:= \
|
|
|
|
http://github.com/downloads/mpruett/audiofile/ \
|
|
|
|
http://www.68k.org/~michael/audiofile/
|
|
|
|
PKG_MD5SUM:=a39be317a7b1971b408805dc5e371862
|
|
|
|
|
2008-10-08 18:00:51 +00:00
|
|
|
PKG_FIXUP:=libtool
|
2010-04-19 07:27:34 +00:00
|
|
|
PKG_INSTALL=1
|
2006-07-26 00:55:20 +00:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
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
|
2010-04-19 07:27:34 +00:00
|
|
|
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).
|
2007-10-14 04:32:56 +00:00
|
|
|
endef
|
|
|
|
|
2010-04-19 07:27:34 +00:00
|
|
|
CONFIGURE_ARGS+= \
|
|
|
|
--enable-shared \
|
|
|
|
--enable-static \
|
|
|
|
--with-build-cc="$(HOSTCC)" \
|
2008-08-06 22:43:15 +00:00
|
|
|
|
2010-04-19 07:27:34 +00:00
|
|
|
TARGET_CFLAGS+= $(FPIC) -std=c99
|
2006-07-26 00:55:20 +00:00
|
|
|
|
|
|
|
define Build/InstallDev
|
2008-10-08 16:01:55 +00:00
|
|
|
$(INSTALL_DIR) $(2)/bin
|
2010-04-19 07:27:34 +00:00
|
|
|
$(CP) \
|
2008-10-08 16:01:55 +00:00
|
|
|
$(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
|
2010-04-19 07:27:34 +00:00
|
|
|
$(CP) \
|
2008-10-08 16:01:55 +00:00
|
|
|
$(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
|
2010-04-19 07:27:34 +00:00
|
|
|
$(CP) \
|
2008-10-08 16:01:55 +00:00
|
|
|
$(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))
|