Add libdvbpsi package

Signed-off-by: Timothy Gu <timothygu99@gmail.com>
This commit is contained in:
Timothy Gu 2014-05-11 13:22:13 -04:00 committed by MXE
parent 7e59569dcd
commit e08d299809
2 changed files with 30 additions and 0 deletions

View File

@ -1553,6 +1553,10 @@ local-pkg-list: $(LOCAL_PKG_LIST)</pre>
<td class="package">libdnet</td>
<td class="website"><a href="http://libdnet.sourceforge.net/">libdnet</a></td>
</tr>
<tr>
<td class="package">libdvbpsi</td>
<td class="website"><a href="http://www.videolan.org/developers/libdvbpsi.html">libdvbpsi</a></td>
</tr>
<tr>
<td class="package">libdvdcss</td>
<td class="website"><a href="http://www.videolan.org/developers/libdvdcss.html">libdvdcss</a></td>

26
src/libdvbpsi.mk Normal file
View File

@ -0,0 +1,26 @@
# This file is part of MXE.
# See index.html for further information.
PKG := libdvbpsi
$(PKG)_IGNORE :=
$(PKG)_VERSION := 1.2.0
$(PKG)_CHECKSUM := b918985f65e1d14bf19209b6b3def254c902901a
$(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
$(PKG)_FILE := $($(PKG)_SUBDIR).tar.bz2
$(PKG)_URL := http://download.videolan.org/pub/libdvbpsi/$($(PKG)_VERSION)/$($(PKG)_FILE)
$(PKG)_DEPS := gcc
define $(PKG)_UPDATE
$(WGET) -q -O- 'http://www.videolan.org/developers/libdvbpsi.html' | \
$(SED) -n 's,.*http://www.videolan.org/pub/libdvbpsi/\([0-9][^<]*\)/.*,\1,p' | \
$(SORT) -Vr | \
head -1
endef
define $(PKG)_BUILD
cd '$(1)' && ./configure \
$(MXE_CONFIGURE_OPTS) \
--enable-release
$(MAKE) -C '$(1)' -j '$(JOBS)' SUBDIRS=src
$(MAKE) -C '$(1)' -j 1 install SUBDIRS=src
endef