2008-10-08 15:33:00 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2007-2008 OpenWrt.org
|
2007-05-15 08:53:44 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2007-09-03 15:58:55 +00:00
|
|
|
# $Id$
|
2007-05-15 08:53:44 +00:00
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=taglib
|
|
|
|
PKG_VERSION:=1.4
|
2009-01-04 00:06:33 +00:00
|
|
|
PKG_RELEASE:=2
|
2007-05-15 08:53:44 +00:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=http://developer.kde.org/~wheeler/files/src/
|
|
|
|
PKG_MD5SUM:=dcd50ddb2544faeae77f194804559404
|
2008-10-08 18:01:41 +00:00
|
|
|
PKG_FIXUP:=libtool
|
2007-05-15 08:53:44 +00:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
2008-10-08 15:33:00 +00:00
|
|
|
PKG_INSTALL=1
|
|
|
|
|
2007-05-15 08:53:44 +00:00
|
|
|
define Package/taglib
|
|
|
|
SECTION:=libs
|
|
|
|
CATEGORY:=Libraries
|
2008-08-06 01:28:17 +00:00
|
|
|
DEPENDS:= +uclibcxx +zlib @!TARGET_avr32
|
2007-05-15 08:53:44 +00:00
|
|
|
TITLE:=Audio output library
|
|
|
|
URL:=http://developer.kde.org/~wheeler/taglib.html
|
|
|
|
endef
|
|
|
|
|
2008-08-06 22:43:15 +00:00
|
|
|
TARGET_CFLAGS += $(FPIC)
|
|
|
|
|
2007-09-03 15:58:55 +00:00
|
|
|
CONFIGURE_ARGS += \
|
|
|
|
--enable-shared \
|
|
|
|
--enable-static \
|
|
|
|
--enable-final \
|
2007-08-30 14:39:55 +00:00
|
|
|
|
2007-09-03 15:58:55 +00:00
|
|
|
CONFIGURE_VARS += \
|
|
|
|
CPPFLAGS="$$$$CPPFLAGS -I$(STAGING_DIR)/usr/include/uClibc++" \
|
|
|
|
CXXFLAGS="$$$$CXXFLAGS -fno-builtin -fno-rtti -nostdinc++" \
|
|
|
|
LDFLAGS="$$$$LDFLAGS" \
|
|
|
|
LIBS="-nodefaultlibs -lz -luClibc++" \
|
2007-05-15 08:53:44 +00:00
|
|
|
|
|
|
|
define Build/InstallDev
|
2008-10-08 15:33:00 +00:00
|
|
|
$(INSTALL_DIR) $(2)/bin
|
|
|
|
$(INSTALL_BIN) \
|
|
|
|
$(PKG_INSTALL_DIR)/usr/bin/taglib-config \
|
|
|
|
$(2)/bin/
|
|
|
|
$(SED) \
|
|
|
|
's,^\(prefix\|exec_prefix\)=.*,\1=$(STAGING_DIR)/usr,g' \
|
|
|
|
$(2)/bin/taglib-config
|
|
|
|
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
2009-01-04 00:06:33 +00:00
|
|
|
$(CP) \
|
|
|
|
$(PKG_INSTALL_DIR)/usr/lib/libtag.{la,a,so*} \
|
2008-10-08 15:33:00 +00:00
|
|
|
$(1)/usr/lib/
|
|
|
|
$(INSTALL_DIR) $(1)/usr/include/taglib
|
|
|
|
$(INSTALL_DATA) \
|
|
|
|
$(PKG_INSTALL_DIR)/usr/include/taglib/* \
|
|
|
|
$(1)/usr/include/taglib/
|
2007-05-15 08:53:44 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/taglib/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
2007-09-03 15:58:55 +00:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libtag.so.* $(1)/usr/lib/
|
2007-05-15 08:53:44 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,taglib))
|