summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorovf2019-11-05 18:57:30 +0000
committerovf2019-11-05 18:57:30 +0000
commit297659c249c438ee05c270c68c739ff233a50579 (patch)
tree1fee95899dd993efc4cf41531d9bf55088a85e0a
parent3aefdaf148804d127f33353a45c78ff10239d558 (diff)
downloadaur-297659c249c438ee05c270c68c739ff233a50579.tar.gz
cosmetic fixes
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD6
2 files changed, 5 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index d360be0660df..aa472dc8ea9d 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,13 +1,13 @@
pkgbase = liburing
- pkgdesc = Linux-native io_uring I/O access library (git-version)
+ pkgdesc = Linux-native io_uring I/O access library
pkgver = 0.2
pkgrel = 1
url = http://git.kernel.dk/cgit/liburing/
arch = i686
arch = x86_64
license = LGPL2.1
+ depends = glibc
provides = liburing.so
- conflicts = liburing.so
source = https://git.kernel.dk/cgit/liburing/snapshot/liburing-0.2.tar.bz2
md5sums = 8998f15d94a9f83e2d82ef2e58037404
diff --git a/PKGBUILD b/PKGBUILD
index c58fc245c280..ba4308cc7555 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,18 +2,18 @@
pkgname=liburing
pkgver=0.2
pkgrel=1
-pkgdesc="Linux-native io_uring I/O access library (git-version)"
+pkgdesc="Linux-native io_uring I/O access library"
arch=(i686 x86_64)
url="http://git.kernel.dk/cgit/liburing/"
license=('LGPL2.1')
+depends=(glibc)
provides=(liburing.so)
-conflicts=(liburing.so)
source=("https://git.kernel.dk/cgit/liburing/snapshot/liburing-$pkgver.tar.bz2")
md5sums=('8998f15d94a9f83e2d82ef2e58037404')
build() {
cd "$srcdir/$pkgname-$pkgver"
- ./configure
+ ./configure --mandir=/usr/share/man
make
}