wok view libplist/receipt @ rev 22367

fix locale-* post_remove
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Nov 22 12:30:25 2019 +0100 (2019-11-22)
parents 789d2c8a6a45
children ede1d184d5c5
line source
1 # SliTaz package receipt.
3 PACKAGE="libplist"
4 VERSION="2.0.0"
5 CATEGORY="multimedia"
6 SHORT_DESC="A library to handle Apple Property List format whereas it's binary or XML"
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="GPL2"
9 WEB_SITE="https://libimobiledevice.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="http://www.libimobiledevice.org/downloads/$TARBALL"
14 DEPENDS="glib libxml2"
15 #BUILD_DEPENDS="glib-dev libxml2-dev cmake swig python python-dev "
16 BUILD_DEPENDS="file glib-dev libxml2-dev python python-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 # cd $src
22 # mkdir build
23 # cd build
24 # cmake ../ -DCMAKE_SKIP_RPATH=ON -DCMAKE_INSTALL_PREFIX:PATH=/usr
25 ./configure &&
26 make -j 1 &&
27 make DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib
35 cp -a $install/usr/lib/*.so* $fs/usr/lib/
36 # cp -a $install/usr/lib/python* $fs/usr/lib
37 cp -a $install/usr/bin $fs/usr
38 }