xfsprogs: update to 3.1.10.

This commit is contained in:
Juan RP 2013-01-14 09:28:14 +01:00
parent ab0471742d
commit e48a8d3344
2 changed files with 15 additions and 27 deletions

View file

@ -1,34 +1,26 @@
# Template file for 'xfsprogs'
pkgname=xfsprogs
version=3.1.8
homepage="http://oss.sgi.com/projects/xfs/"
distfiles="ftp://ftp.archlinux.org/other/xfsprogs/$pkgname-$version.tar.gz"
makedepends="libuuid-devel libblkid-devel readline-devel"
version=3.1.10
revision=1
makedepends="libuuid-devel libblkid-devel readline-devel"
short_desc="Utilities for managing the XFS filesystem"
maintainer="Juan RP <xtraeme@gmail.com>"
license="LGPL-2.1"
checksum=74409e2e3748074999df25c00f722621659a0bd3607e677f0bcc4373b8c93eab
long_desc="
A set of commands to use the XFS filesystem, including mkfs.xfs.
XFS is a high performance journaling filesystem which originated on the
SGI IRIX platform. It is completely multi-threaded, can support large files
and large filesystems, extended attributes, variable block sizes, is extent
based, and makes extensive use of Btrees (directories, extents, free space)
to aid both performance and scalability."
homepage="http://oss.sgi.com/projects/xfs/"
distfiles="ftp://ftp.archlinux.org/other/xfsprogs/${pkgname}-${version}.tar.gz"
checksum=9ec8dc77bf3bc114c3ba89f87316a32e3097efb3e7fc44df23421614bb21aa6c
replaces="xfsprogs-libs>=0"
subpackages="${pkgname}-devel"
disable_parallel_build=yes
subpackages="$pkgname-devel"
do_build() {
do_configure() {
export DEBUG=-DNDEBUG
./configure ${CONFIGURE_SHARED_ARGS} \
--enable-readline=yes --enable-blkid=yes --enable-lib64=no
make ${makejobs}
}
do_build() {
make
}
do_install() {
@ -37,7 +29,7 @@ do_install() {
rm -rf ${DESTDIR}/usr/share/doc
rm -f ${DESTDIR}/usr/share/man/man5/proj*
rm -f ${DESTDIR}/lib/*.{a,la}
rm -f ${DESTDIR}/usr/lib/*.so
rm -f ${DESTDIR}/usr/lib/*.{a,so}
# Move stuff to /usr.
vmove "sbin/*" usr/sbin
vmove "lib/*" usr/lib

View file

@ -1,14 +1,10 @@
# Template file for 'xfsprogs-devel'.
#
depends="libuuid-devel xfsprogs>=3.1.8"
short_desc="${short_desc} (development files)"
long_desc="${long_desc}
This package contains files for development, headers, static libs, etc."
noarch=yes
depends="libuuid-devel xfsprogs>=${version}"
short_desc="${short_desc} -- development files"
do_install() {
vmove usr/include usr
vmove "usr/lib/*.*a" usr/lib
vmove usr/share/man/man3 usr/share/man
}