blob: 45b6cfa5b9be87c05e02a729616d382b15540895 (
plain)
1 # Description: file and directory monitoring system
2 # URL: http://www.gnome.org/~veillard/gamin/
3 # Packager: Matt Housh, jaeger at morpheus dot net
4 # Maintainer: Bartlomiej Palmowski, rotwang at crux dot org dot pl
5 # Depends on: glib python
6
7 name=gamin
8 version=0.1.10
9 release=2
10 source=(http://www.gnome.org/~veillard/$name/sources/$name-$version.tar.gz)
11
12 build() {
13 cd $name-$version
14 ./configure \
15 --prefix=/usr \
16 --disable-static \
17 --libexecdir=/usr/sbin
18 make
19 make DESTDIR=$PKG install
20 }
|