blob: 83df9f2cc73a526bed3442cee8e116b0292d5800 (
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: Natanael Copa <ncopa@alpinelinux.org>
pkgname=xfsprogs
pkgver=3.1.5
pkgrel=0
pkgdesc="XFS filesystem utilities"
url="http://oss.sgi.com/projects/xfs/"
arch="all"
license="LGPL"
depends="e2fsprogs"
makedepends="e2fsprogs-dev bash"
subpackages="$pkgname-dev $pkgname-doc"
source="ftp://oss.sgi.com/projects/xfs/cmd_tars/${pkgname}-$pkgver.tar.gz
"
_builddir="$srcdir"/$pkgname-$pkgver
prepare() {
cd "$_builddir"
sed -i -e 's/--best//' Makefile doc/Makefile
}
build() {
cd "$_builddir"
export DEBUG=-DNDEBUG
export OPTIMIZER="$CFLAGS"
ac_cv_header_aio_h=yes ac_cv_lib_rt_lio_listio=yes \
./configure --prefix=/usr \
--sbindir=/sbin \
--libexecdir=/usr/lib \
--enable-lib64=no \
--enable-gettext=no
make SHELL=/bin/bash || return 1
}
package() {
cd "$_builddir"
make -j1 DIST_ROOT="$pkgdir" install install-dev install-qa
}
md5sums="b1db37749e2b4149a0dd178abff956be xfsprogs-3.1.5.tar.gz"
|