wok diff libplist/receipt @ rev 25710
typo
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Jul 25 12:42:06 2024 +0000 (4 months ago) |
parents | ede1d184d5c5 |
children |
line diff
1.1 --- a/libplist/receipt Mon Feb 14 17:51:14 2022 +0000 1.2 +++ b/libplist/receipt Thu Jul 25 12:42:06 2024 +0000 1.3 @@ -1,19 +1,19 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libplist" 1.7 -VERSION="2.0.0" 1.8 +VERSION="2.2.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 MAINTAINER="slaxemulator@gmail.com" 1.12 LICENSE="GPL2" 1.13 WEB_SITE="https://libimobiledevice.org/" 1.14 1.15 -TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.16 -WGET_URL="http://www.libimobiledevice.org/downloads/$TARBALL" 1.17 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.18 +WGET_URL="https://github.com/libimobiledevice/$PACKAGE/archive/$VERSION.tar.gz" 1.19 1.20 DEPENDS="glib libxml2" 1.21 #BUILD_DEPENDS="glib-dev libxml2-dev cmake swig python python-dev " 1.22 -BUILD_DEPENDS="file glib-dev libxml2-dev python python-dev" 1.23 +BUILD_DEPENDS="automake file gawk glib-dev libtool libxml2-dev python python-dev" 1.24 1.25 # What is the latest version available today? 1.26 current_version() 1.27 @@ -25,13 +25,10 @@ 1.28 # Rules to configure and make the package. 1.29 compile_rules() 1.30 { 1.31 -# cd $src 1.32 -# mkdir build 1.33 -# cd build 1.34 -# cmake ../ -DCMAKE_SKIP_RPATH=ON -DCMAKE_INSTALL_PREFIX:PATH=/usr 1.35 - ./configure && 1.36 - make -j 1 && 1.37 - make DESTDIR=$DESTDIR install 1.38 + ./autogen.sh && 1.39 + ./configure LIBS=-lm && 1.40 + make && 1.41 + make install DESTDIR=$DESTDIR 1.42 } 1.43 1.44 # Rules to gen a SliTaz package suitable for Tazpkg. 1.45 @@ -39,7 +36,7 @@ 1.46 { 1.47 mkdir -p $fs/usr/lib 1.48 1.49 + cp -a $install/usr/bin $fs/usr 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 }