PKGBUILDs/alarm/libaccept4/PKGBUILD
WarheadsSE a0dc5cf711 creating alarm/libaccept4
new file:   libaccept4/PKGBUILD
	new file:   libaccept4/libaccept4.install
2012-06-04 20:50:30 -05:00

27 lines
683 B
Bash

# Maintainer: Jason Plum <jplum@archlinuxarm.org>
pkgname=libaccept4
pkgdesc='Library to supply accept4() to kernels without it'
pkgver=0.1.0
pkgrel=1
arch=('arm')
license=('GPL')
url="http://pond-weed.com/wmt8650/index.html"
source=("http://pond-weed.com/wmt8650/libaccept4-$pkgver.tar.gz")
sha256sums=('7f51cc578a52045bfbee7c6f8b3824a67c2f2228b1e83b6ab80a9c18eadd9bb8')
# backup=( 'etc/ld.so.preload' )
options=( strip docs !libtool emptydirs zipman purge !upx )
install=$pkgname.install
build() {
cd "$srcdir/libaccept4-$pkgver"
./configure --prefix=/usr
make
}
package() {
cd "$srcdir/libaccept4-$pkgver"
make DESTDIR="${pkgdir}/" install
}
# vim:set ts=2 sw=2 et: