blob: 1de451489ea95c45444bf866f4a6d64d4b831bd2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Description: Utilitaires pour le systeme de fichiers xfs
# URL: http://oss.sgi.com/projects/xfs/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
name=xfsprogs
version=3.1.0
release=1
source=(ftp://oss.sgi.com/projects/xfs/cmd_tars/xfsprogs-${version}.tar.gz)
build() {
cd $name-$version
export DEBUG=-DNDEBUG
export OPTIMIZER=$CFLAGS
./configure --prefix=/usr \
--mandir=/usr/share/man \
--sbindir=/sbin \
--libdir=/lib
make
make DIST_ROOT=$PKG install install-dev
rm -r $PKG/usr/share/locale
}
|