95fc4519426431eacf494fec64397ef2c59cd280
[openwrt/svn-archive/archive.git] / libs / libdvbpsi4 / Makefile
1 #
2 # Copyright (C) 2007 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=libdvbpsi4
12 PKG_VERSION:=0.1.5
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
16 PKG_SOURCE_URL:=http://download.videolan.org/pub/libdvbpsi/$(PKG_VERSION)/
17 PKG_MD5SUM:=407cd074b7d6eaf31b20b693ed924655
18
19 include $(INCLUDE_DIR)/package.mk
20
21 define Package/libdvbpsi4
22 SECTION:=libs
23 CATEGORY:=Libraries
24 TITLE:=MPEG TS and DVB PSI tables decoding and generating
25 URL:=http://www.videolan.org/developers/libdvbpsi.html
26 endef
27
28 define Package/libdvbpsi4/description
29 libdvbpsi is a simple library designed for MPEG TS and DVB PSI tables
30 decoding and generating.
31 endef
32
33 TARGET_CFLAGS += $(FPIC)
34
35 define Build/Compile
36 $(call Build/Compile/Default, \
37 DESTDIR="$(PKG_INSTALL_DIR)" \
38 install \
39 )
40 endef
41
42 define Build/InstallDev
43 mkdir -p $(1)/usr/include
44 $(CP) $(PKG_INSTALL_DIR)/usr/include/dvbpsi $(1)/usr/include/
45 mkdir -p $(1)/usr/lib
46 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libdvbpsi.{a,so*,la} $(1)/usr/lib/
47 endef
48
49 define Package/libdvbpsi4/install
50 $(INSTALL_DIR) $(1)/usr/lib
51 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libdvbpsi.so* $(1)/usr/lib/
52 endef
53
54 $(eval $(call BuildPackage,libdvbpsi4))