2f9a65fa97
git-svn-id: svn://svn.openwrt.org/openwrt/packages@32206 3c298f89-4303-0410-b956-a3cf2f4a3e73
57 lines
1.3 KiB
Makefile
57 lines
1.3 KiB
Makefile
#
|
|
# Copyright (C) 2007-2008 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=libdvbpsi5
|
|
PKG_VERSION:=0.1.6
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
PKG_SOURCE_URL:=http://download.videolan.org/pub/libdvbpsi/$(PKG_VERSION)/
|
|
PKG_MD5SUM:=bd2d9861be3311e1e03c91cd9345f542
|
|
|
|
PKG_FIXUP:=autoreconf
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
PKG_INSTALL=1
|
|
|
|
define Package/libdvbpsi
|
|
SECTION:=libs
|
|
CATEGORY:=Libraries
|
|
TITLE:=MPEG TS and DVB PSI tables decoding and generating
|
|
URL:=http://www.videolan.org/developers/libdvbpsi.html
|
|
endef
|
|
|
|
define Package/libdvbpsi/description
|
|
libdvbpsi is a simple library designed for MPEG TS and DVB PSI tables
|
|
decoding and generating.
|
|
endef
|
|
|
|
TARGET_CFLAGS += $(FPIC)
|
|
|
|
define Build/InstallDev
|
|
$(INSTALL_DIR) $(1)/usr/include/dvbpsi
|
|
$(INSTALL_DATA) \
|
|
$(PKG_INSTALL_DIR)/usr/include/dvbpsi/*.h \
|
|
$(1)/usr/include/dvbpsi/
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) \
|
|
$(PKG_INSTALL_DIR)/usr/lib/libdvbpsi.{so*,a,la} \
|
|
$(1)/usr/lib/
|
|
endef
|
|
|
|
define Package/libdvbpsi/install
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) \
|
|
$(PKG_INSTALL_DIR)/usr/lib/libdvbpsi.so* \
|
|
$(1)/usr/lib/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,libdvbpsi))
|