wok diff libplist/receipt @ rev 21273

updated libplist and libplist-dev (1.4.0 -> 2.0.0)
author Hans-G?nter Theisgen
date Fri Apr 12 17:10:00 2019 +0100 (2019-04-12)
parents 086841d75237
children d68da37cc801
line diff
     1.1 --- a/libplist/receipt	Tue Jun 11 11:09:32 2013 +0200
     1.2 +++ b/libplist/receipt	Fri Apr 12 17:10:00 2019 +0100
     1.3 @@ -1,33 +1,38 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libplist"
     1.7 -VERSION="1.4"
     1.8 +VERSION="2.0.0"
     1.9  CATEGORY="multimedia"
    1.10 -SHORT_DESC="A library to handle Apple Property List format whereas it's binary or XMl"
    1.11 +SHORT_DESC="A library to handle Apple Property List format whereas it's binary or XML"
    1.12  MAINTAINER="slaxemulator@gmail.com"
    1.13  LICENSE="GPL2"
    1.14 +WEB_SITE="https://libimobiledevice.org/"
    1.15 +
    1.16  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.17 -WEB_SITE="http://libimobiledevice.org/"
    1.18  WGET_URL="http://www.libimobiledevice.org/downloads/$TARBALL"
    1.19  
    1.20  DEPENDS="glib libxml2"
    1.21 -BUILD_DEPENDS="libxml2-dev glib-dev cmake swig python python-dev "
    1.22 +#BUILD_DEPENDS="glib-dev libxml2-dev cmake swig python python-dev "
    1.23 +BUILD_DEPENDS="glib-dev libxml2-dev python-dev"
    1.24  
    1.25  # Rules to configure and make the package.
    1.26  compile_rules()
    1.27  {
    1.28 -	cd $src
    1.29 -	mkdir build
    1.30 -	cd build
    1.31 -	cmake ../ -DCMAKE_SKIP_RPATH=ON -DCMAKE_INSTALL_PREFIX:PATH=/usr
    1.32 -	make && make DESTDIR=$DESTDIR install
    1.33 +#	cd $src
    1.34 +#	mkdir build
    1.35 +#	cd build
    1.36 +#	cmake ../ -DCMAKE_SKIP_RPATH=ON -DCMAKE_INSTALL_PREFIX:PATH=/usr
    1.37 +	./configure &&
    1.38 +	make -j 1 &&
    1.39 +	make DESTDIR=$DESTDIR install
    1.40  }
    1.41  
    1.42  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.43  genpkg_rules()
    1.44  {
    1.45  	mkdir -p $fs/usr/lib 
    1.46 -	cp -a $install/usr/lib/*.so* $fs/usr/lib/
    1.47 -	cp -a $install/usr/lib/python* $fs/usr/lib
    1.48 -	cp -a $install/usr/bin $fs/usr
    1.49 +
    1.50 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib/
    1.51 +	cp -a $install/usr/lib/python*	$fs/usr/lib
    1.52 +	cp -a $install/usr/bin		$fs/usr
    1.53  }