From: Florian Fainelli Date: Mon, 14 May 2007 21:11:08 +0000 (+0000) Subject: Add libdvbpsi4 (#1657) X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=2a1340a9bb7fdb3d60465099e71853acba3664b2;p=openwrt%2Fsvn-archive%2Fpackages.git Add libdvbpsi4 (#1657) SVN-Revision: 7235 --- diff --git a/libs/libdvbpsi4/Makefile b/libs/libdvbpsi4/Makefile new file mode 100644 index 000000000..4534a0103 --- /dev/null +++ b/libs/libdvbpsi4/Makefile @@ -0,0 +1,60 @@ +# +# Copyright (C) 2007 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# +# $Id: $ + +include $(TOPDIR)/rules.mk + +PKG_NAME:=libdvbpsi4 +PKG_VERSION:=0.1.5 +PKG_RELEASE:=1 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 +PKG_SOURCE_URL:=http://download.videolan.org/pub/libdvbpsi/$(PKG_VERSION)/ +PKG_MD5SUM:=407cd074b7d6eaf31b20b693ed924655 +PKG_CAT:=bzcat + +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) +PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install + +include $(INCLUDE_DIR)/package.mk + +define Package/libdvbpsi4 + SECTION:=libs + CATEGORY:=Libraries + TITLE:=MPEG TS and DVB PSI tables decoding and generating + DESCRIPTION:=\ + libdvbpsi is a simple library designed for MPEG TS and DVB PSI tables \\\ + decoding and generating. + URL:=http://www.videolan.org/developers/libdvbpsi.html +endef + +define Build/Compile + $(call Build/Compile/Default, \ + DESTDIR="$(PKG_INSTALL_DIR)" \ + install \ + ) +endef + +define Build/InstallDev + mkdir -p $(STAGING_DIR)/usr/include + $(CP) $(PKG_INSTALL_DIR)/usr/include/dvbpsi $(STAGING_DIR)/usr/include/ + mkdir -p $(STAGING_DIR)/usr/lib + $(CP) $(PKG_INSTALL_DIR)/usr/lib/libdvbpsi.{a,so*,la} $(STAGING_DIR)/usr/lib/ +endef + +define Build/UninstallDev + rm -rf \ + $(STAGING_DIR)/usr/include/dvbpsi \ + $(STAGING_DIR)/usr/lib/libdvbpsi.{a,so*,la} +endef + +define Package/libdvbpsi4/install + $(INSTALL_DIR) $(1)/usr/lib + $(CP) $(PKG_INTALL_DIR)/usr/lib/libdvbpsi.so.* $(1)/usr/lib/ +endef + +$(eval $(call BuildPackage,libdvbpsi4))