2008-09-12 21:01:02 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2007-2008 OpenWrt.org
|
2007-05-14 21:11:08 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
2009-06-21 14:31:10 +00:00
|
|
|
PKG_NAME:=libdvbpsi5
|
|
|
|
PKG_VERSION:=0.1.6
|
|
|
|
PKG_RELEASE:=1
|
2007-05-14 21:11:08 +00:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
|
|
PKG_SOURCE_URL:=http://download.videolan.org/pub/libdvbpsi/$(PKG_VERSION)/
|
2009-06-21 14:31:10 +00:00
|
|
|
PKG_MD5SUM:=bd2d9861be3311e1e03c91cd9345f542
|
2010-12-08 19:26:18 +00:00
|
|
|
|
2012-06-11 21:18:33 +00:00
|
|
|
PKG_FIXUP:=autoreconf
|
2007-05-14 21:11:08 +00:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
2008-09-12 21:01:02 +00:00
|
|
|
PKG_INSTALL=1
|
|
|
|
|
2009-06-21 14:31:10 +00:00
|
|
|
define Package/libdvbpsi
|
2007-05-14 21:11:08 +00:00
|
|
|
SECTION:=libs
|
|
|
|
CATEGORY:=Libraries
|
|
|
|
TITLE:=MPEG TS and DVB PSI tables decoding and generating
|
|
|
|
URL:=http://www.videolan.org/developers/libdvbpsi.html
|
|
|
|
endef
|
|
|
|
|
2009-06-21 14:31:10 +00:00
|
|
|
define Package/libdvbpsi/description
|
2008-09-12 21:01:02 +00:00
|
|
|
libdvbpsi is a simple library designed for MPEG TS and DVB PSI tables
|
2007-10-14 04:32:56 +00:00
|
|
|
decoding and generating.
|
|
|
|
endef
|
|
|
|
|
2008-08-06 22:43:15 +00:00
|
|
|
TARGET_CFLAGS += $(FPIC)
|
|
|
|
|
2007-05-14 21:11:08 +00:00
|
|
|
define Build/InstallDev
|
2008-09-12 21:01:02 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/include/dvbpsi
|
|
|
|
$(INSTALL_DATA) \
|
|
|
|
$(PKG_INSTALL_DIR)/usr/include/dvbpsi/*.h \
|
|
|
|
$(1)/usr/include/dvbpsi/
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
2009-01-04 00:06:33 +00:00
|
|
|
$(CP) \
|
|
|
|
$(PKG_INSTALL_DIR)/usr/lib/libdvbpsi.{so*,a,la} \
|
2008-09-12 21:01:02 +00:00
|
|
|
$(1)/usr/lib/
|
2007-05-14 21:11:08 +00:00
|
|
|
endef
|
|
|
|
|
2009-06-21 14:31:10 +00:00
|
|
|
define Package/libdvbpsi/install
|
2007-05-14 21:11:08 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
2009-01-04 00:06:33 +00:00
|
|
|
$(CP) \
|
2008-09-12 21:01:02 +00:00
|
|
|
$(PKG_INSTALL_DIR)/usr/lib/libdvbpsi.so* \
|
|
|
|
$(1)/usr/lib/
|
2007-05-14 21:11:08 +00:00
|
|
|
endef
|
|
|
|
|
2009-06-21 14:31:10 +00:00
|
|
|
$(eval $(call BuildPackage,libdvbpsi))
|