mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-10 15:38:06 +02:00
add id3lib package
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1794 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
0a35c0944b
commit
e66413fcd1
@ -113,6 +113,7 @@ source "package/wiviz/Config.in"
|
||||
comment "Libraries"
|
||||
source "package/cgilib/Config.in"
|
||||
source "package/glib/Config.in"
|
||||
source "package/id3lib/Config.in"
|
||||
source "package/libamsel/Config.in"
|
||||
source "package/libart/Config.in"
|
||||
source "package/curl/Config.in" # libcurl
|
||||
|
@ -48,6 +48,7 @@ package-$(BR2_PACKAGE_HASERL) += haserl
|
||||
package-$(BR2_PACKAGE_HOSTAPD) += hostapd
|
||||
package-$(BR2_PACKAGE_HOWL) += howl
|
||||
package-$(BR2_PACKAGE_HTPDATE) += htpdate
|
||||
package-$(BR2_PACKAGE_ID3LIB) += id3lib
|
||||
package-$(BR2_PACKAGE_IPKG) += ipkg
|
||||
package-$(BR2_PACKAGE_IPROUTE2) += iproute2
|
||||
package-$(BR2_PACKAGE_IPTABLES) += iptables
|
||||
@ -193,6 +194,7 @@ freetype-compile: zlib-compile
|
||||
fprobe-compile: libpcap-compile
|
||||
gdbserver-compile: ncurses-compile
|
||||
gnutls-compile: libgcrypt-compile opencdk-compile libtasn1-compile
|
||||
id3lib-compile: uclibc++-compile zlib-compile
|
||||
irssi-compile: glib-compile ncurses-compile
|
||||
hostapd-compile: openssl-compile
|
||||
kismet-compile: uclibc++-compile libpcap-compile ncurses-compile
|
||||
|
15
openwrt/package/id3lib/Config.in
Normal file
15
openwrt/package/id3lib/Config.in
Normal file
@ -0,0 +1,15 @@
|
||||
config BR2_PACKAGE_ID3LIB
|
||||
prompt "id3lib - An ID3v1/ID3v2 tagging library"
|
||||
tristate
|
||||
# default m if CONFIG_DEVEL
|
||||
default n
|
||||
select BR2_PACKAGE_UCLIBCXX
|
||||
select BR2_PACKAGE_ZLIB
|
||||
help
|
||||
An ID3v1/ID3v2 tagging library.
|
||||
|
||||
http://www.id3lib.org/
|
||||
|
||||
Depends: uClibc++, zlib
|
||||
|
||||
|
90
openwrt/package/id3lib/Makefile
Normal file
90
openwrt/package/id3lib/Makefile
Normal file
@ -0,0 +1,90 @@
|
||||
# $Id$
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=id3lib
|
||||
PKG_VERSION:=3.8.3
|
||||
PKG_RELEASE:=1
|
||||
PKG_MD5SUM:=19f27ddd2dda4b2d26a559a4f0f402a7
|
||||
|
||||
PKG_SOURCE_URL:=@SF/id3lib
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
PKG_CAT:=zcat
|
||||
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
||||
|
||||
include $(TOPDIR)/package/rules.mk
|
||||
|
||||
$(eval $(call PKG_template,ID3LIB,id3lib,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
||||
|
||||
$(PKG_BUILD_DIR)/.configured:
|
||||
(cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \
|
||||
$(TARGET_CONFIGURE_OPTS) \
|
||||
CFLAGS="$(TARGET_CFLAGS)" \
|
||||
CXXFLAGS="$(TARGET_CFLAGS) -fno-builtin" \
|
||||
CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(LINUX_DIR)/include" \
|
||||
LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \
|
||||
LIBS="-Wl,-Bdynamic,-luClibc++,-Bstatic,-lstdc++,-Bdynamic,-lz,-lm,-lc" \
|
||||
./configure \
|
||||
--target=$(GNU_TARGET_NAME) \
|
||||
--host=$(GNU_TARGET_NAME) \
|
||||
--build=$(GNU_HOST_NAME) \
|
||||
--program-prefix="" \
|
||||
--program-suffix="" \
|
||||
--prefix=/usr \
|
||||
--exec-prefix=/usr \
|
||||
--bindir=/usr/bin \
|
||||
--datadir=/usr/share \
|
||||
--includedir=/usr/include \
|
||||
--infodir=/usr/share/info \
|
||||
--libdir=/usr/lib \
|
||||
--libexecdir=/usr/lib \
|
||||
--localstatedir=/var \
|
||||
--mandir=/usr/share/man \
|
||||
--sbindir=/usr/sbin \
|
||||
--sysconfdir=/etc \
|
||||
$(DISABLE_LARGEFILE) \
|
||||
$(DISABLE_NLS) \
|
||||
--enable-shared \
|
||||
--enable-static \
|
||||
--disable-rpath \
|
||||
--with-gnu-ld \
|
||||
);
|
||||
touch $@
|
||||
|
||||
$(PKG_BUILD_DIR)/.built:
|
||||
rm -rf $(PKG_INSTALL_DIR)
|
||||
mkdir -p $(PKG_INSTALL_DIR)
|
||||
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||||
DESTDIR="$(PKG_INSTALL_DIR)" \
|
||||
all install
|
||||
touch $@
|
||||
|
||||
$(IPKG_ID3LIB):
|
||||
install -d -m0755 $(IDIR_ID3LIB)/usr/lib/
|
||||
cp -fpR $(PKG_INSTALL_DIR)/usr/lib/libid3-*.so.* $(IDIR_ID3LIB)/usr/lib/
|
||||
$(IPKG_BUILD) $(IDIR_ID3LIB) $(PACKAGE_DIR)
|
||||
|
||||
$(STAGING_DIR)/usr/lib/libid3.so: $(PKG_BUILD_DIR)/.built
|
||||
mkdir -p $(STAGING_DIR)/usr/include
|
||||
cp -fpR $(PKG_INSTALL_DIR)/usr/include/id3 $(STAGING_DIR)/usr/include/
|
||||
cp -fpR $(PKG_INSTALL_DIR)/usr/include/id3.h $(STAGING_DIR)/usr/include/
|
||||
mkdir -p $(STAGING_DIR)/usr/lib
|
||||
cp -fpR $(PKG_INSTALL_DIR)/usr/lib/libid3.a $(STAGING_DIR)/usr/lib/
|
||||
cp -fpR $(PKG_INSTALL_DIR)/usr/lib/libid3.so $(STAGING_DIR)/usr/lib/
|
||||
cp -fpR $(PKG_INSTALL_DIR)/usr/lib/libid3-*.so.* $(STAGING_DIR)/usr/lib/
|
||||
touch $@
|
||||
|
||||
install-dev: $(STAGING_DIR)/usr/lib/libid3.so
|
||||
|
||||
uninstall-dev:
|
||||
rm -rf \
|
||||
$(STAGING_DIR)/usr/include/id3 \
|
||||
$(STAGING_DIR)/usr/include/id3.h \
|
||||
$(STAGING_DIR)/usr/lib/libid3.a \
|
||||
$(STAGING_DIR)/usr/lib/libid3.so \
|
||||
$(STAGING_DIR)/usr/lib/libid3-*.so.* \
|
||||
|
||||
compile: install-dev
|
||||
clean: uninstall-dev
|
7
openwrt/package/id3lib/ipkg/id3lib.control
Normal file
7
openwrt/package/id3lib/ipkg/id3lib.control
Normal file
@ -0,0 +1,7 @@
|
||||
Package: id3lib
|
||||
Priority: optional
|
||||
Section: libs
|
||||
Maintainer: OpenWrt Developers Team <bugs@openwrt.org>
|
||||
Source: http://openwrt.org/cgi-bin/viewcvs.cgi/openwrt/package/id3lib/
|
||||
Depends: uclibc++, zlib
|
||||
Description: An ID3v1/ID3v2 tagging library.
|
Loading…
Reference in New Issue
Block a user