From 733c9e10abd96cf1d7358020df5e3dba089a79ae Mon Sep 17 00:00:00 2001 From: Anthony Iliopoulos Date: Sun, 22 Sep 2019 15:37:38 +0200 Subject: [PATCH] New package: liburing-0.1 --- srcpkgs/liburing-devel | 1 + srcpkgs/liburing/template | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 120000 srcpkgs/liburing-devel create mode 100644 srcpkgs/liburing/template diff --git a/srcpkgs/liburing-devel b/srcpkgs/liburing-devel new file mode 120000 index 00000000000..84e26155468 --- /dev/null +++ b/srcpkgs/liburing-devel @@ -0,0 +1 @@ +liburing \ No newline at end of file diff --git a/srcpkgs/liburing/template b/srcpkgs/liburing/template new file mode 100644 index 00000000000..f586b7facdc --- /dev/null +++ b/srcpkgs/liburing/template @@ -0,0 +1,25 @@ +# Template file for 'liburing' +pkgname=liburing +version=0.1 +revision=1 +archs="i686* x86_64*" +build_style=configure +configure_args="--mandir=/usr/share/man" +short_desc="Linux-native io_uring I/O access library" +maintainer="Anthony Iliopoulos " +license="LGPL-2.1-only" +homepage="http://git.kernel.dk/cgit/liburing/" +distfiles="${homepage}/snapshot/${pkgname}-${version}.tar.xz" +checksum=a018ca58d38d5d4b544bfaa539f8dba60ed30e74ffae91ffbc8bea70d304fc5e + +liburing-devel_package() { + short_desc+=" - development files" + depends="liburing-${version}_${revision}" + pkg_install() { + vmove usr/include + vmove usr/lib/pkgconfig + vmove usr/lib/*.a + vmove usr/lib/*.so + vmove usr/share/man + } +}