2014-05-03 15:53:48 +00:00
|
|
|
# Contributor: Johannes Dewender arch at JonnyJD dot net
|
|
|
|
pkgname=python-rtslib-fb
|
|
|
|
_pkgname=rtslib-fb
|
2014-10-02 00:23:54 +00:00
|
|
|
pkgver=2.1.fb50
|
2014-05-03 15:53:48 +00:00
|
|
|
pkgrel=1
|
|
|
|
pkgdesc="free branch version of the LIO target API"
|
|
|
|
arch=('any')
|
|
|
|
url="https://github.com/agrover/rtslib-fb"
|
|
|
|
license=('Apache')
|
|
|
|
depends=()
|
|
|
|
makedepends=('python-setuptools')
|
|
|
|
# this is incompatible to python2-rtslib
|
|
|
|
provides=()
|
|
|
|
conflicts=('python2-rtslib' 'targetcli-fb<=2.1.fb31')
|
|
|
|
backup=()
|
|
|
|
options=()
|
|
|
|
install=
|
|
|
|
source=(https://fedorahosted.org/releases/t/a/targetcli-fb/$_pkgname-$pkgver.tar.gz target.service)
|
2014-10-02 00:23:54 +00:00
|
|
|
sha256sums=('8a5ed44fc42e7a1f136db9eebb67d4cdc22ba3ba7a675f7af756bb2b550b4dad'
|
2014-07-05 02:03:10 +00:00
|
|
|
'74b9e5c11eab1781aa8b43680b429080ae800fbcdafd29626791b5426a4cdea8')
|
2014-05-03 15:53:48 +00:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "$srcdir/$_pkgname-$pkgver"
|
|
|
|
python setup.py build
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd "$srcdir/$_pkgname-$pkgver"
|
|
|
|
python setup.py install --skip-build --root="$pkgdir/" --optimize=1
|
|
|
|
|
|
|
|
install -Dm 644 doc/targetctl.8 "$pkgdir/usr/share/man/man8/targetctl.8"
|
|
|
|
install -Dm 644 doc/saveconfig.json.5 "$pkgdir/usr/share/man/man5/saveconfig.json.5"
|
|
|
|
|
|
|
|
# arch specific
|
|
|
|
cd "$srcdir"
|
|
|
|
install -d "$pkgdir/etc/target"
|
|
|
|
install -d "$pkgdir/etc/target/backup"
|
|
|
|
# systemd
|
|
|
|
mkdir -p "$pkgdir/usr/lib/systemd/system"
|
|
|
|
cp target.service "$pkgdir/usr/lib/systemd/system/"
|
|
|
|
}
|
|
|
|
|
|
|
|
# vim:set ts=2 sw=2 et:
|