blob: 020afb70e44512c10847f0c71e00f20666a529b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# $Id: PKGBUILD 16154 2010-04-25 20:32:27Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Alessandro Sagratini
pkgname=inotify-tools
pkgver=3.14
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')
depends=(glibc)
makedepends=('gcc' 'make')
source=(http://github.com/downloads/rvoicilas/inotify-tools/inotify-tools-$pkgver.tar.gz)
md5sums=('b43d95a0fa8c45f8bab3aec9672cf30c')
build() {
cd $startdir/src/$pkgname-$pkgver
./configure --prefix=/usr
make || return 1
make DESTDIR=$startdir/pkg install
}
|