summaryrefslogtreecommitdiff
path: root/community/lockfile-progs/PKGBUILD
blob: f415421716ed03e5fce874d86592a095e107361c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# $Id: PKGBUILD 88325 2013-04-16 13:30:02Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Andreas Wagner <Andreas dot Wagner at em dot uni-frankfurt dot de>

pkgname=lockfile-progs
pkgver=0.1.17
pkgrel=1
pkgdesc="programs for locking and unlocking files and mailboxes"
arch=('i686' 'x86_64')
license=('GPL')
url="http://packages.debian.org/unstable/misc/lockfile-progs"
depends=('glibc')
makedepends=('gcc' 'make' 'liblockfile')
source=(http://ftp.debian.org/debian/pool/main/l/lockfile-progs/${pkgname}_${pkgver}.tar.gz)
md5sums=('64424a766fbc8cf6d613fcc14a096e14')

build() {
    cd $srcdir/lockfile-progs-$pkgver
    make CFLAGS="-g -Wall -O2"
}

package() {
    cd $srcdir/lockfile-progs-$pkgver
    mkdir -p $pkgdir/usr/bin
    install -s bin/* $pkgdir/usr/bin
    mkdir -p $pkgdir/usr/share/man/man1
    install man/*.1 $pkgdir/usr/share/man/man1
}