wait4: new package

This commit is contained in:
Antoine Lubineau 2013-04-01 18:00:10 +02:00
commit f4a85e32e9
3 changed files with 40 additions and 0 deletions

13
.SRCINFO Normal file
View file

@ -0,0 +1,13 @@
pkgbase = wait4
pkgdesc = Wait for an arbitrary process
pkgver = 0.3.1
pkgrel = 1
url = http://www.incenp.org/gitweb/?p=wait4.git;a=summary
arch = i686
arch = x86_64
license = GPL3
source = http://www.incenp.org/files/softs/wait4/0.3/wait4-0.3.1.tar.gz
sha256sums = 976b54fd3ae310a81fd383eed473a0a0a538e25072c4cf9a02d87114c22ea80e
pkgname = wait4

0
.gitignore vendored Normal file
View file

27
PKGBUILD Normal file
View file

@ -0,0 +1,27 @@
# Maintainer: Antoine Lubineau <antoine@lubignon.info>
pkgname=wait4
pkgver=0.3.1
pkgrel=1
pkgdesc="Wait for an arbitrary process"
arch=('i686' 'x86_64')
url="http://www.incenp.org/gitweb/?p=wait4.git;a=summary"
license=('GPL3')
depends=()
makedepends=()
checkdepends=()
source=("http://www.incenp.org/files/softs/wait4/0.3/wait4-${pkgver}.tar.gz")
sha256sums=('976b54fd3ae310a81fd383eed473a0a0a538e25072c4cf9a02d87114c22ea80e')
build() {
cd "$srcdir/$pkgname-$pkgver"
./configure --prefix=/usr
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir/" install
}
# vim:set ts=2 sw=2 et: