Add libdvbpsi4 (#1657)
git-svn-id: svn://svn.openwrt.org/openwrt/packages@7235 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
80326220c1
commit
f3938ed571
60
libs/libdvbpsi4/Makefile
Normal file
60
libs/libdvbpsi4/Makefile
Normal file
@ -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))
|
Loading…
x
Reference in New Issue
Block a user