blob: 6aa90fe94e4fca0f98f7b808f8dc0ac65b96c168 (
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.1
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
}
|