wok view tslib/receipt @ rev 15590

gphoto2, gtkperf: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Dec 02 19:18:04 2013 +0000 (2013-12-02)
parents 6b4a47136bff
children b162f4f24678
line source
1 # SliTaz package receipt.
3 PACKAGE="tslib"
4 VERSION="1.0"
5 CATEGORY="development"
6 SHORT_DESC="Abstraction layer for touchscreen panel events."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="LGPL2"
9 WEB_SITE="http://tslib.berlios.de/"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WGET_URL="http://download.berlios.de/$PACKAGE/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./autogen.sh
18 ./configure --prefix=/usr --infodir=/usr/share/info \
19 --sysconfdir=/etc \
20 --mandir=/usr/share/man \
21 $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib/ts
30 cp -a $install/usr/lib/ts/*.so* $fs/usr/lib/ts
31 cp -a $install/usr/lib/*.so* $fs/usr/lib
32 cp -a $install/usr/bin $fs/usr
33 cp -a $install/etc $fs
34 }