wok view gamin/receipt @ rev 3353

Up: util-linux-ng (2.15.1)
author Christophe Lincoln <pankso@slitaz.org>
date Thu Jun 11 17:33:14 2009 +0200 (2009-06-11)
parents 022b3e6c17a1
children f21c160be928
line source
1 # SliTaz package receipt.
3 PACKAGE="gamin"
4 VERSION="0.1.10"
5 CATEGORY="system-tools"
6 SHORT_DESC="File and directory monitoring system."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="glib"
9 BUILD_DEPENDS="pkg-config glib glib-dev gtk+-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.gnome.org/~veillard/gamin/"
12 WGET_URL="http://www.gnome.org/~veillard/gamin/sources/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --sysconfdir=/etc \
21 --libexecdir=/usr/lib/gamin \
22 --infodir=/usr/share/info \
23 --mandir=/usr/share/man \
24 $CONFIGURE_ARGS
25 make
26 make DESTDIR=$PWD/_pkg install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
33 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
34 cp -a $_pkg/usr/lib/$PACKAGE $fs/usr/lib
35 strip -s $fs/usr/lib/$PACKAGE/*
36 }