add package libplist

This commit is contained in:
Pavel Vatagin 2015-08-22 20:29:31 +03:00
parent 0a78af197a
commit 875ca1f756
2 changed files with 28 additions and 0 deletions

View File

@ -1740,6 +1740,10 @@ local-pkg-list: $(LOCAL_PKG_LIST)</pre>
<td class="package">libpaper</td>
<td class="website"><a href="http://packages.debian.org/unstable/libpaper1">libpaper</a></td>
</tr>
<tr>
<td class="package">libplist</td>
<td class="website"><a href="https://github.com/libimobiledevice/libplist">libplist</a></td>
</tr>
<tr>
<td class="package">libpng</td>
<td class="website"><a href="http://www.libpng.org/">libpng</a></td>

24
src/libplist.mk Normal file
View File

@ -0,0 +1,24 @@
# This file is part of MXE.
# See index.html for further information.
PKG := libplist
$(PKG)_IGNORE :=
$(PKG)_VERSION := 1.12
$(PKG)_CHECKSUM := 2d7bc731fd992a318a10195d43b11ff01b46bbb0
$(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz
$(PKG)_URL := https://github.com/libimobiledevice/libplist/archive/$($(PKG)_VERSION).tar.gz
$(PKG)_DEPS := gcc libxml2
define $(PKG)_UPDATE
$(WGET) -q -O- 'https://github.com/libimobiledevice/libplist/archive/' | \
$(SED) -n 's,.*/\([0-9][^"]*\)/"\.tar.*,\1,p' | \
head -1
endef
define $(PKG)_BUILD
cd '$(1)' && $(SHELL) ./autogen.sh \
$(MXE_CONFIGURE_OPTS) \
--without-cython
$(MAKE) -C '$(1)' -j '$(JOBS)' install
endef