From: Stephen Walker Date: Mon, 5 May 2014 23:03:48 +0000 (+0000) Subject: [packages] libplist: update to 1.11, build without cython support, drop cmake as... X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;hb=05a03c9b3c644a4654a196a258e0f34905f98d26 [packages] libplist: update to 1.11, build without cython support, drop cmake as upstream switched to autotools Signed-off-by: Stephen Walker SVN-Revision: 40704 --- diff --git a/libs/libplist/Makefile b/libs/libplist/Makefile index 9aede13479..ba8c7bc36a 100644 --- a/libs/libplist/Makefile +++ b/libs/libplist/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2012 OpenWrt.org +# Copyright (C) 2012-2014 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -8,17 +8,16 @@ include $(TOPDIR)/rules.mk PKG_NAME:=libplist -PKG_VERSION:=1.8 +PKG_VERSION:=1.11 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE_URL:=http://www.libimobiledevice.org/downloads -PKG_MD5SUM:=2a9e0258847d50f9760dc3ece25f4dc6 +PKG_MD5SUM:=82de65f38cb2f0a9fd0839679b46072b -CMAKE_INSTALL:=1 +PKG_INSTALL:=1 include $(INCLUDE_DIR)/package.mk -include $(INCLUDE_DIR)/cmake.mk define Package/libplist/Default TITLE:=Apple property list @@ -67,6 +66,9 @@ define Package/libplist-utils/description This package contains the libplist utilities. endef +CONFIGURE_ARGS += \ + --without-cython + define Build/InstallDev $(INSTALL_DIR) $(1)/usr/include $(CP) $(PKG_INSTALL_DIR)/usr/include/plist $(1)/usr/include/ @@ -88,7 +90,7 @@ endef define Package/libplist-utils/install $(INSTALL_DIR) $(1)/usr/bin - $(CP) $(PKG_INSTALL_DIR)/usr/bin/plutil* $(1)/usr/bin/ + $(CP) $(PKG_INSTALL_DIR)/usr/bin/plistutil $(1)/usr/bin/ endef $(eval $(call BuildPackage,libplist))