wok-next diff libplist/receipt @ rev 17454
syslinux/iso2exe: create a vfat partition in usb bootkey (DOS case only)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Dec 18 11:42:27 2014 +0100 (2014-12-18) |
parents | 677aeabc6609 |
children | 582967b5089b |
line diff
1.1 --- a/libplist/receipt Tue Feb 21 17:14:24 2012 -0500 1.2 +++ b/libplist/receipt Thu Dec 18 11:42:27 2014 +0100 1.3 @@ -5,12 +5,14 @@ 1.4 CATEGORY="multimedia" 1.5 SHORT_DESC="A library to handle Apple Property List format whereas it's binary or XMl" 1.6 MAINTAINER="slaxemulator@gmail.com" 1.7 -DEPENDS="glib libxml2" 1.8 -BUILD_DEPENDS="libxml2-dev glib-dev cmake swig python python-dev " 1.9 +LICENSE="GPL2" 1.10 TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.11 WEB_SITE="http://libimobiledevice.org/" 1.12 WGET_URL="http://www.libimobiledevice.org/downloads/$TARBALL" 1.13 1.14 +DEPENDS="glib libxml2" 1.15 +BUILD_DEPENDS="libxml2-dev glib-dev cmake swig python python-dev " 1.16 + 1.17 # Rules to configure and make the package. 1.18 compile_rules() 1.19 { 1.20 @@ -25,7 +27,7 @@ 1.21 genpkg_rules() 1.22 { 1.23 mkdir -p $fs/usr/lib 1.24 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib/ 1.25 - cp -a $_pkg/usr/lib/python* $fs/usr/lib 1.26 - cp -a $_pkg/usr/bin $fs/usr 1.27 + cp -a $install/usr/lib/*.so* $fs/usr/lib/ 1.28 + cp -a $install/usr/lib/python* $fs/usr/lib 1.29 + cp -a $install/usr/bin $fs/usr 1.30 }