mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 17:44:36 +08:00
Merge remote-tracking branch 'origin/testing' into testing
This commit is contained in:
commit
442a47f421
27
libaio/PKGBUILD
Normal file
27
libaio/PKGBUILD
Normal 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
25
libseccomp/PKGBUILD
Normal 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')
|
||||
|
Loading…
Reference in New Issue
Block a user