blob: 959ab4af58f664992165d0415cf386f8b905ce0a (
plain)
1 # Description: iSNS server and client
2 # URL: https://github.com/open-iscsi/open-isns
3 # Maintainer: Thomas Penteker, tek at serverop dot de
4
5 name=open-isns
6 version=0.99
7 release=1
8 source=(http://distfiles.serverop.de/open-isns-$version.tar.gz)
9
10 build() {
11
12 cd $name-$version
13
14 ./configure --prefix=/usr
15
16 make
17 make DESTDIR=$PKG install install_lib install_hdrs
18
19 rm -r $PKG/usr/lib/systemd
20 }
|