blob: 12ec1ef5a3a48b3e34ea2d795597f6223ebdebf8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# Maintainer: iamawacko <iamawacko@protonmail.com>
# Contributor: Brian Bidulock <bidulock@openss7.org>
pkgname=crmsh
pkgver=4.6.2
pkgrel=1
pkgdesc="Command-line interface for high-availability cluster management on GNU/Linux systems"
arch=('any')
url="https://github.com/ClusterLabs/${pkgname}/"
license=('GPL2')
makedepends=('asciidoc' 'python-setuptools')
depends=('python'
'python-lxml'
'python-dateutil'
'python-yaml')
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/ClusterLabs/$pkgname/archive/$pkgver.tar.gz")
sha512sums=('02e7b145f3860490690aa95fdab535afa5f0c1e12d58743b32ea47df53e1dc3b51bfbf14f8e6f4a6ba5608c1f3240656d2bacda6b43bbc198e98c760081b6324')
prepare() {
cd ${pkgname}-${pkgver}
./autogen.sh
}
build() {
cd ${pkgname}-${pkgver}
./configure PYTHON=python \
--prefix=/usr \
--libdir=/usr/lib \
--sbindir=/usr/bin \
--sysconfdir=/etc \
--localstatedir=/var
make V=0
}
package() {
cd ${pkgname}-${pkgver}
make DESTDIR="${pkgdir}" install
}
# vim: set sw=2 et:
|