mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-27 23:44:04 +00:00
Added core/xfsprogs
This commit is contained in:
parent
830966cbfa
commit
95292b18db
2 changed files with 37 additions and 3 deletions
|
@ -1,12 +1,10 @@
|
||||||
# Contributor: Andrea Scarpino <andrea@archlinux.org>
|
# Contributor: Andrea Scarpino <andrea@archlinux.org>
|
||||||
|
|
||||||
plugrel=1
|
|
||||||
|
|
||||||
pkgname=pyalpmm
|
pkgname=pyalpmm
|
||||||
pkgver=0.3
|
pkgver=0.3
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc="The Python ALPM high-level API"
|
pkgdesc="The Python ALPM high-level API"
|
||||||
arch=('i686' 'x86_64' 'arm')
|
arch=('i686' 'x86_64')
|
||||||
license=('GPL')
|
license=('GPL')
|
||||||
url="http://www.infolexikon.de/code/pyalpmm"
|
url="http://www.infolexikon.de/code/pyalpmm"
|
||||||
depends=('python>=2.6.2')
|
depends=('python>=2.6.2')
|
||||||
|
|
36
core/xfsprogs/PKGBUILD
Normal file
36
core/xfsprogs/PKGBUILD
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
# $Id: PKGBUILD 100477 2010-11-23 17:28:22Z tpowa $
|
||||||
|
# Maintainer: Paul Mattal <paul@archlinux.org>
|
||||||
|
|
||||||
|
# PlugApps: Kevin Mihelich <kevin@plugapps.com>
|
||||||
|
# - original OPTIMIZER export does not play nice with our system
|
||||||
|
|
||||||
|
plugrel=1
|
||||||
|
|
||||||
|
pkgname=xfsprogs
|
||||||
|
pkgver=3.1.4
|
||||||
|
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')
|
||||||
|
# We mirror the sources as upstream tends to move them once a new release is out
|
||||||
|
source=("ftp://ftp.archlinux.org/other/xfsprogs/${pkgname}-${pkgver}.tar.gz")
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
||||||
|
# export OPTIMIZER="-march=${CARCH/_/-} -O1"
|
||||||
|
export OPTIMIZER="-O1"
|
||||||
|
export DEBUG=-DNDEBUG
|
||||||
|
make
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
||||||
|
make DIST_ROOT="${pkgdir}" install install-dev
|
||||||
|
chown -R root $pkgdir
|
||||||
|
chgrp -R root $pkgdir
|
||||||
|
}
|
||||||
|
md5sums=('74081975f148bcabcab26c4c3496ede9')
|
Loading…
Reference in a new issue