core/libaio to 0.3.111-1

This commit is contained in:
Kevin Mihelich 2018-05-03 23:13:16 +00:00
parent 69424f171d
commit 51cf06f574

View file

@ -6,20 +6,20 @@
# - replace CFLAGS setting with just a removal of -fstack-protector
pkgname=libaio
pkgver=0.3.110
pkgver=0.3.111
pkgrel=1
pkgdesc="The Linux-native asynchronous I/O facility (aio) library"
arch=('i686' 'x86_64')
arch=('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)
md5sums=('2a35602e43778383e2f4907a4ca39ab8')
md5sums=('abb8f46d64b9bd3d0c6097e3a36639be')
build() {
cd "$srcdir/$pkgname-$pkgver"
# AIO library is a thin wrapper around kernel syscalls, it does not use stdlib
# and other helpers like stack protection libraries
CFLAGS=`echo $CFLAGS | sed -e 's/-fstack-protector//'` && CXXFLAGS="$CFLAGS"
CFLAGS=`echo $CFLAGS | sed -e 's/-fstack-protector-strong//'` && CXXFLAGS="$CFLAGS"
make
}