New package: open-isns-0.96

This commit is contained in:
Christian Neukirchen 2016-09-30 16:20:56 +02:00
parent 9ec6758b41
commit 52075f5929
4 changed files with 37 additions and 0 deletions

View File

@ -2599,3 +2599,4 @@ libKF5WaylandServer.so.5 kwayland-5.26.0_1
libKF5WaylandClient.so.5 kwayland-5.26.0_1
libKF5IdleTime.so.5 kidletime-5.26.0_1
liblmdb.so.0 lmdb-0.9.18_2
libisns.so.0 libisns-0.96_1

1
srcpkgs/libisns Symbolic link
View File

@ -0,0 +1 @@
open-isns

1
srcpkgs/libisns-devel Symbolic link
View File

@ -0,0 +1 @@
open-isns

View File

@ -0,0 +1,34 @@
# Template file for 'open-isns'
pkgname=open-isns
version=0.96
revision=1
build_style=gnu-configure
configure_args="--enable-shared"
make_install_args="install install_hdrs install_lib SYSTEMDDIR=/tmp"
conf_files="/etc/isns/isnsdd.conf /etc/isns/isnsd.conf /etc/isns/isnsadm.conf"
short_desc="Server and client for iSNS"
maintainer="Christian Neukirchen <chneukirchen@gmail.com>"
license="LGPL-2.1"
homepage="https://github.com/open-iscsi/open-isns"
distfiles="https://github.com/open-iscsi/open-isns/archive/v${version}.tar.gz"
checksum=487fd0d87826423ea99dc159826d0b654a5da016ed670d4395a77bfa4f62e2ec
post_extract() {
sed -i '1i#include <sys/time.h>' include/libisns/isns.h
}
libisns_package() {
short_desc+=" - library"
pkg_install() {
vmove usr/lib/*.so.*
}
}
libisns-devel_package() {
short_desc+=" - development files"
depends="libisns>=${version}_${revision}"
pkg_install() {
vmove usr/include
vmove usr/lib/*.so
vmove usr/lib/*.a
}
}