xfsprogs: update to 3.1.4.

This commit is contained in:
Juan RP 2010-12-18 20:02:56 +01:00
parent 90ad75ef6c
commit fca93af9a1
2 changed files with 8 additions and 5 deletions

View File

@ -1,11 +1,11 @@
# Template file for 'xfsprogs'
pkgname=xfsprogs
version=3.1.3
version=3.1.4
distfiles="ftp://oss.sgi.com/projects/xfs/cmd_tars/$pkgname-$version.tar.gz"
build_style=custom-install
short_desc="Utilities for managing the XFS filesystem"
maintainer="Juan RP <xtraeme@gmail.com>"
checksum=fad032cc65be3e6a384f2835211e1caf6bb67b4185bf660910753d42b5795fd5
checksum=1cdceb890622dbe7b9d42b9b81f37bb9f7d380b44606db138cf7c4676ad0a1a6
long_desc="
A set of commands to use the XFS filesystem, including mkfs.xfs.
@ -33,14 +33,16 @@ Add_dependency build readline-devel
do_build()
{
export DEBUG=-DNDEBUG
./configure --enable-readline=yes \
--enable-blkid=yes \
--enable-lib64=no && \
make || return 1
--enable-lib64=no
make
}
do_install()
{
cd ${wrksrc} && \
make DIST_ROOT=${DESTDIR} install install-dev || return 1
make DIST_ROOT=${DESTDIR} install install-dev
}

View File

@ -11,5 +11,6 @@ do_install()
{
mkdir -p ${DESTDIR}/lib
mv ${SRCPKGDESTDIR}/lib/*.so* ${DESTDIR}/lib
chmod 755 ${DESTDIR}/lib/*.so*
rm -f ${SRCPKGDESTDIR}/lib/*.*a
}