wok rev 11775

added plist/swig/plist.i to libplist. Ommission was breaking libimobiledevice(-dev).
author Samuel Trassare <samuel_trassare@yahoo.com>
date Thu Feb 23 13:22:33 2012 -0800 (2012-02-23)
parents b0e8dc7dec71
children 76e72554f887
files boinc/receipt libimobiledevice/description.txt libimobiledevice/receipt libplist-dev/receipt libplist/description.txt
line diff
     1.1 --- a/boinc/receipt	Thu Feb 23 22:04:30 2012 +0100
     1.2 +++ b/boinc/receipt	Thu Feb 23 13:22:33 2012 -0800
     1.3 @@ -2,7 +2,7 @@
     1.4  
     1.5  PACKAGE="boinc"
     1.6  VERSION="6.10.58"
     1.7 -SVN_TAG="6_10_58"
     1.8 +SVN_TAG="6.10.58"
     1.9  CATEGORY="network"
    1.10  SHORT_DESC="Open-source software for volunteer computing and grid computing."
    1.11  MAINTAINER="pankso@slitaz.org"
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/libimobiledevice/description.txt	Thu Feb 23 13:22:33 2012 -0800
     2.3 @@ -0,0 +1,9 @@
     2.4 +libimobiledevice is a software library that talks the protocols to support 
     2.5 +iPhone, iPod Touch, iPad and Apple TV devices. Unlike other projects, it does 
     2.6 +not depend on using any existing proprietary libraries and does not require 
     2.7 +jailbreaking. It allows other software to easily access the device's filesystem,
     2.8 +retrieve information about the device and its internals, backup/restore the 
     2.9 +device, manage SpringBoard icons, manage installed applications, retrieve 
    2.10 +addressbook/calendars/notes and bookmarks and (using libgpod) synchronize music 
    2.11 +and video to the device. The library is in development since August 2007 with 
    2.12 +the goal to bring support for these devices to the Linux Desktop.
     3.1 --- a/libimobiledevice/receipt	Thu Feb 23 22:04:30 2012 +0100
     3.2 +++ b/libimobiledevice/receipt	Thu Feb 23 13:22:33 2012 -0800
     3.3 @@ -10,13 +10,16 @@
     3.4  WGET_URL="$WEB_SITE/downloads/$TARBALL"
     3.5  
     3.6  DEPENDS="gnutls glib libplist usbmuxd"
     3.7 -BUILD_DEPENDS="gnutls-dev glib-dev libplist-dev usbmuxd-dev swig python-dev"
     3.8 +BUILD_DEPENDS="gnutls-dev glib-dev libplist-dev usbmuxd-dev python-dev swig"
     3.9  
    3.10  # Rules to configure and make the package.
    3.11  compile_rules()
    3.12  {
    3.13  	patch -Np1 -i $stuff/swig-version-check.patch
    3.14 -	./configure $CONFIGURE_ARGS && make && make install
    3.15 +	./configure \
    3.16 +		$CONFIGURE_ARGS && 
    3.17 +	make && 
    3.18 +	make install
    3.19  }
    3.20  
    3.21  # Rules to gen a SliTaz package suitable for Tazpkg.
     4.1 --- a/libplist-dev/receipt	Thu Feb 23 22:04:30 2012 +0100
     4.2 +++ b/libplist-dev/receipt	Thu Feb 23 13:22:33 2012 -0800
     4.3 @@ -13,6 +13,6 @@
     4.4  genpkg_rules()
     4.5  {
     4.6  	mkdir -p $fs/usr/lib
     4.7 -	cp -a $_pkg/usr/include $fs/usr
     4.8 +	cp -ar $_pkg/usr/include $fs/usr
     4.9  	cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib
    4.10  }
     5.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     5.2 +++ b/libplist/description.txt	Thu Feb 23 13:22:33 2012 -0800
     5.3 @@ -0,0 +1,2 @@
     5.4 +A library to handle Apple Property List format whether it's in binary or XML
     5.5 +format.