blob: 3509bbbdef99c0f44e565dbc70244da6fdf14aa1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# 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
# Depends on: util-linux-ng
name=xfsprogs
version=3.0.3
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
}
|