Merge remote-tracking branch 'origin/testing' into testing

This commit is contained in:
Fabian 2013-08-26 22:16:28 +00:00
commit 442a47f421
2 changed files with 52 additions and 0 deletions

27
libaio/PKGBUILD Normal file
View File

@ -0,0 +1,27 @@
# Maintainer: Giuseppe Calà <jiveaxe@gmail.com>
# Contributor: jensp <jens@jenux.homelinux.org>
# Credit to encelo for updating the PKGBUILD
pkgname=libaio
pkgver=0.3.109
pkgrel=1
pkgdesc="The Linux-native asynchronous I/O facility (aio) library"
arch=('i686' 'x86_64')
url="http://lse.sourceforge.net/io/aio.html"
license=('LGPL')
source=(http://ftp.de.debian.org/debian/pool/main/liba/${pkgname}/${pkgname}_${pkgver}.orig.tar.gz)
sha256sums=('bf4a457253cbaab215aea75cb6e18dc8d95bbd507e9920661ff9bdd288c8778d')
build() {
cd "$srcdir/$pkgname-$pkgver"
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make prefix="$pkgdir/usr" install
}

25
libseccomp/PKGBUILD Normal file
View File

@ -0,0 +1,25 @@
# Maintainer: Daniel Micay <danielmicay@gmail.com>
# Contributor: Patryk Kowalczyk < patryk at kowalczyk dot ws>
pkgname=libseccomp
pkgver=2.1.0
pkgrel=1
pkgdesc='Enhanced seccomp library'
arch=('i686' 'x86_64')
license=('LGPL2.1')
url="http://sourceforge.net/projects/libseccomp/"
depends=('glibc')
source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.gz")
build() {
cd $pkgname-$pkgver
./configure --prefix=/usr
make
}
package() {
cd $pkgname-$pkgver
make DESTDIR="$pkgdir" install
}
md5sums=('3961103c1234c13a810f6a12e60c797f')