blob: 2af8b4762a27f5161f935621dc2f432bd21ae35f (
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
42
|
# Maintainer: Andrew Sun <adsun701 at gmail dot com>
# Contributor: Carsten Feuls <archlinux at carstenfeuls dot de>
pkgname=gfs2-utils
pkgver=3.6.0
pkgrel=1
pkgdesc="Utilities for managing the global file system (GFS2)"
arch=('i686' 'x86_64')
license=('GPL' 'LGPL')
url="https://sourceware.org/cluster/gfs/"
depends=('python')
makedepends=('util-linux' 'check')
source=("https://releases.pagure.org/${pkgname}/${pkgname}-${pkgver}.tar.bz2")
options=('staticlibs' '!debug')
sha512sums=('970872258670abdb25f82975b32bc0da119d039b4049c9f5b9712d4982a8c817bba390d143c5b32d19876db41c34a07775388491b374d3b143fac0afd98495e6')
prepare() {
cd "${srcdir}/${pkgname}-${pkgver}"
./autogen.sh
}
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
bzip2_CFLAGS+=" " \
bzip2_LIBS+=" -lbz2" \
./configure \
--prefix=/usr \
--libdir=/usr/lib \
--sbindir=/usr/bin \
--libexecdir=/usr/lib/$pkgname
make
}
check() {
cd "${srcdir}/${pkgname}-${pkgver}"
make check || true
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
}
|