parent
c15ba7e4fa
commit
19c232f2ab
@ -0,0 +1,13 @@ |
||||
config BR2_PACKAGE_LIBID3TAG |
||||
tristate "libid3tag - An ID3 tag manipulation library" |
||||
# default m if CONFIG_DEVEL |
||||
default n |
||||
select BR2_PACKAGE_ZLIB |
||||
help |
||||
libid3tag is a library for reading and (eventually) writing ID3 tags, both |
||||
ID3v1 and the various versions of ID3v2. |
||||
|
||||
http://mad.sourceforge.net/ |
||||
|
||||
Depends: zlib |
||||
|
@ -0,0 +1,87 @@ |
||||
# $Id$
|
||||
|
||||
include $(TOPDIR)/rules.mk |
||||
|
||||
PKG_NAME:=libid3tag
|
||||
PKG_VERSION:=0.15.1b
|
||||
PKG_RELEASE:=1
|
||||
PKG_MD5SUM:=e5808ad997ba32c498803822078748c3
|
||||
|
||||
PKG_SOURCE_URL:=@SF/mad
|
||||
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,LIBID3TAG,libid3tag,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) |
||||
|
||||
$(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.prepared |
||||
(cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \
|
||||
$(TARGET_CONFIGURE_OPTS) \
|
||||
CFLAGS="$(TARGET_CFLAGS)" \
|
||||
CPPFLAGS="-I$(STAGING_DIR)/include -I$(STAGING_DIR)/usr/include" \
|
||||
LDFLAGS="-L$(STAGING_DIR)/lib -L$(STAGING_DIR)/usr/lib" \
|
||||
./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_NLS) \
|
||||
$(DISABLE_LARGEFILE) \
|
||||
--enable-shared \
|
||||
--enable-static \
|
||||
--disable-rpath \
|
||||
--with-gnu-ld \
|
||||
--disable-debugging \
|
||||
--disable-profiling \
|
||||
);
|
||||
touch $@
|
||||
|
||||
$(PKG_BUILD_DIR)/.built: $(PKG_BUILD_DIR)/.configured |
||||
rm -rf $(PKG_INSTALL_DIR)
|
||||
mkdir -p $(PKG_INSTALL_DIR)
|
||||
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||||
DESTDIR="$(PKG_INSTALL_DIR)" \
|
||||
all install
|
||||
touch $@
|
||||
|
||||
$(IPKG_LIBID3TAG): $(STAGING_DIR)/usr/lib/libid3tag.so |
||||
install -m0755 -d $(IDIR_LIBID3TAG)/usr/lib
|
||||
cp -fpR $(PKG_INSTALL_DIR)/usr/lib/libid3tag.so.* $(IDIR_LIBID3TAG)/usr/lib/
|
||||
$(RSTRIP) $(IDIR_LIBID3TAG)
|
||||
$(IPKG_BUILD) $(IDIR_LIBID3TAG) $(PACKAGE_DIR)
|
||||
|
||||
$(STAGING_DIR)/usr/lib/libid3tag.so: $(PKG_BUILD_DIR)/.built |
||||
mkdir -p $(STAGING_DIR)/usr/include
|
||||
cp -fpR $(PKG_INSTALL_DIR)/usr/include/id3tag.h $(STAGING_DIR)/usr/include/
|
||||
mkdir -p $(STAGING_DIR)/usr/lib
|
||||
cp -fpR $(PKG_INSTALL_DIR)/usr/lib/libid3tag.a $(STAGING_DIR)/usr/lib/
|
||||
cp -fpR $(PKG_INSTALL_DIR)/usr/lib/libid3tag.so* $(STAGING_DIR)/usr/lib/
|
||||
touch $@
|
||||
|
||||
install-dev: $(STAGING_DIR)/usr/lib/libid3tag.so |
||||
|
||||
uninstall-dev: |
||||
rm -rf \
|
||||
$(STAGING_DIR)/usr/include/id3tag.h \
|
||||
$(STAGING_DIR)/usr/lib/libid3tag.a \
|
||||
$(STAGING_DIR)/usr/lib/libid3tag.so* \
|
||||
|
||||
compile: install-dev |
||||
clean: uninstall-dev |
@ -0,0 +1,9 @@ |
||||
Package: libid3tag |
||||
Priority: optional |
||||
Section: libs |
||||
Version: [TBDL] |
||||
Architecture: [TBDL] |
||||
Maintainer: OpenWrt Developers Team <bugs@openwrt.org> |
||||
Source: http://openwrt.org/cgi-bin/viewcvs.cgi/openwrt/package/libid3tag/ |
||||
Depends: zlib |
||||
Description: an ID3 tag manipulation library |
Loading…
Reference in new issue