PKGBUILDs/community/inotify-tools/PKGBUILD
2009-10-09 21:15:33 -05:00

21 lines
689 B
Bash

# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Alessandro Sagratini
pkgname=inotify-tools
pkgver=3.13
pkgrel=1
pkgdesc="inotify-tools is a C library and a set of command-line programs for Linux providing a simple interface to inotify."
arch=('i686' 'x86_64')
url="http://inotify-tools.sourceforge.net/"
license=('GPL')
makedepends=('gcc' 'make')
source=(http://downloads.sourceforge.net/sourceforge/inotify-tools/$pkgname-$pkgver.tar.gz)
md5sums=('35d7178297390f18bae451e083362acf')
build() {
cd $startdir/src/$pkgname-$pkgver
./configure --prefix=/usr
make || return 1
make DESTDIR=$startdir/pkg install
}