mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
fixed aur/lio-utils
This commit is contained in:
parent
b5fd14c109
commit
50e90bf8e3
1 changed files with 10 additions and 20 deletions
|
@ -1,40 +1,30 @@
|
|||
# Contributor: Johannes Dewender arch at JonnyJD dot net
|
||||
# Contributor: Kevin Mihelich <kevin@plugapps.com>
|
||||
|
||||
plugrel=1
|
||||
|
||||
pkgname=lio-utils
|
||||
pkgver=4.1
|
||||
pkgrel=3
|
||||
epoch=
|
||||
pkgdesc="a simple low-level configuration tool set for LIO 3 (Target 3 and iSCSI 3)"
|
||||
pkgdesc="A simple low-level configuration tool set for LIO 3 (Target 3 and iSCSI 3)"
|
||||
arch=('any')
|
||||
url="http://linux-iscsi.org/wiki/Lio-utils"
|
||||
license=('AGPL3')
|
||||
depends=('python2')
|
||||
makedepends=()
|
||||
optdepends=(net-snmp)
|
||||
provides=()
|
||||
conflicts=()
|
||||
replaces=()
|
||||
backup=()
|
||||
options=()
|
||||
install=
|
||||
source=()
|
||||
md5sums=()
|
||||
|
||||
makedepends=('net-snmp')
|
||||
optdepends=('net-snmp')
|
||||
source=("$pkgname-$pkgver.tgz::http://www.risingtidesystems.com/git/?p=$pkgname.git;a=snapshot;h=e6d881a98210c99468b82daa5f8926bb079e4790;sf=tgz")
|
||||
md5sums=('25bca4a70abe7041b3eef80f8fbdcad4')
|
||||
|
||||
build() {
|
||||
if [ ! -e "$pkgname-$pkgver.tgz" ]; then
|
||||
wget "http://www.risingtidesystems.com/git/?p=$pkgname.git;a=snapshot;h=e6d881a98210c99468b82daa5f8926bb079e4790;sf=tgz" -O "$pkgname-$pkgver.tgz"
|
||||
fi
|
||||
bsdtar -xf "$srcdir/$pkgname-$pkgver.tgz"
|
||||
cd "$srcdir/$pkgname/"
|
||||
cd "$srcdir/$pkgname"
|
||||
find -type f -a -name '*.py' -exec sed -i -e 's|#![ ]*/usr/bin/python$|#!/usr/bin/python2|' {} \;
|
||||
sed -i 's|python setup.py|python2 setup.py|' Makefile
|
||||
make SNMP_FEATURE=1
|
||||
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$srcdir/$pkgname/"
|
||||
cd "$srcdir/$pkgname"
|
||||
|
||||
#make DESTDIR="$pkgdir/" initd_install)
|
||||
install -d $pkgdir/etc/rc.d
|
||||
|
|
Loading…
Reference in a new issue