mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
43 lines
1.3 KiB
Bash
43 lines
1.3 KiB
Bash
# Contributor: Johannes Dewender arch at JonnyJD dot net
|
|
pkgname=python-rtslib-fb
|
|
_pkgname=rtslib-fb
|
|
pkgver=2.1.fb48
|
|
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)
|
|
sha256sums=('4e7f6e002c82861271b90aea8005d84d5d0cf7c48ed1938f61583eefd7337305'
|
|
'74b9e5c11eab1781aa8b43680b429080ae800fbcdafd29626791b5426a4cdea8')
|
|
|
|
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:
|