mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
22 lines
689 B
Bash
22 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
|
||
|
}
|