blob: 3429ad09337a91929dffdb263e2fba3a34e46d2a (
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
|
# Description: Filesystem utilities for XFS
# URL: http://oss.sgi.com/projects/xfs/
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: util-linux-ng
name=xfsprogs
version=3.1.4
release=1
source=(ftp://oss.sgi.com/projects/xfs/cmd_tars/$name-$version.tar.gz)
build() {
cd $name-$version
export DEBUG=-DNDEBUG
export OPTIMIZER=$CFLAGS
./configure --prefix=/usr \
--mandir=/usr/man \
--disable-gettext
make
make DIST_ROOT=$PKG install install-dev
rm $PKG/lib/libhandle.{a,la,so}
ln -sf ../../lib/libhandle.so.1.0.3 $PKG/usr/lib/libhandle.so
rm -r $PKG/usr/share
}
|