wok-undigest view tslib/receipt @ rev 430

Add tslib
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 06 13:12:44 2011 +0200 (2011-09-06)
parents
children 5878b2ecd43a
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 WEB_SITE="http://tslib.berlios.de/"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WGET_URL="http://download.berlios.de/$PACKAGE/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 ./autogen.sh
17 ./configure --prefix=/usr --infodir=/usr/share/info \
18 --mandir=/usr/share/man \
19 $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$DESTDIR install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
29 }