mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 05:27:14 +08:00
24 lines
652 B
Bash
24 lines
652 B
Bash
# $Id: PKGBUILD 66428 2010-01-31 08:42:59Z tpowa $
|
|
# Maintainer: Paul Mattal <paul@archlinux.org>
|
|
pkgname=xfsprogs
|
|
pkgver=3.1.1
|
|
pkgrel=1
|
|
pkgdesc="XFS filesystem utilities"
|
|
arch=(i686 x86_64)
|
|
license=('LGPL')
|
|
url="http://oss.sgi.com/projects/xfs/"
|
|
groups=('base')
|
|
depends=('util-linux-ng>=2.16')
|
|
options=('!makeflags' '!libtool')
|
|
source=(ftp://oss.sgi.com/projects/xfs/cmd_tars/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('c2308b46ee707597ac50aae418d321b8')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
export OPTIMIZER="-march=${CARCH/_/-} -O1"
|
|
export DEBUG=-DNDEBUG
|
|
make || return 1
|
|
make DIST_ROOT="${pkgdir}" install install-dev || return 1
|
|
}
|
|
|