summaryrefslogtreecommitdiff
path: root/community/xdiskusage/PKGBUILD
diff options
context:
space:
mode:
authorNicolas Reynolds <fauno@kiwwwi.com.ar>2011-07-09 20:52:21 -0300
committerNicolas Reynolds <fauno@kiwwwi.com.ar>2011-07-09 20:52:21 -0300
commitaabab2c530c33c1beb40ac3dacb95e19ab99eac3 (patch)
tree1417c10b601a05725676a727a25901a32e7fd94c /community/xdiskusage/PKGBUILD
parent3357db80ffa8a795fb5cdad0fc726470887706b0 (diff)
parentd1e588afc2779754c0abd1122ecf4f8e3c863d7a (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: extra/cinepaint/PKGBUILD extra/cmake/PKGBUILD extra/fltk/PKGBUILD extra/foomatic/PKGBUILD extra/kdegraphics/PKGBUILD extra/kdelibs/PKGBUILD extra/kdepim-runtime/PKGBUILD extra/kdepim/PKGBUILD extra/libxi/PKGBUILD extra/monica/PKGBUILD extra/rasqal/PKGBUILD extra/soprano/PKGBUILD multilib/wine/PKGBUILD testing/mesa/PKGBUILD
Diffstat (limited to 'community/xdiskusage/PKGBUILD')
-rw-r--r--community/xdiskusage/PKGBUILD15
1 files changed, 10 insertions, 5 deletions
diff --git a/community/xdiskusage/PKGBUILD b/community/xdiskusage/PKGBUILD
index 4ea61f79d..833ce7f9e 100644
--- a/community/xdiskusage/PKGBUILD
+++ b/community/xdiskusage/PKGBUILD
@@ -1,14 +1,15 @@
-# $Id: PKGBUILD 2038 2009-09-07 16:25:48Z spupykin $
+# $Id: PKGBUILD 51101 2011-07-05 08:55:16Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
# Contributor: Jason Chu <jason@archlinux.org>
pkgname=xdiskusage
pkgver=1.48
-pkgrel=5
+pkgrel=6
pkgdesc="xdiskusage is a user-friendly program to show you what is using up all your disk space"
arch=('i686' 'x86_64' 'mips64el')
depends=('fltk')
+makedepends=('libxi')
license=('GPL')
url="http://xdiskusage.sourceforge.net"
options=(!emptydirs)
@@ -33,10 +34,14 @@ build() {
---
> int n = (long long)v;
EOF
-
+
./configure --prefix=/usr
install -d "$pkgdir/usr/bin" "$pkgdir/usr/share/man/man1"
- LDFLAGS=-lXi make || return 1
- make prefix="$pkgdir/usr" mandir="$pkgdir/usr/share/man" install || return 1
+ LDFLAGS=-lXi make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make prefix="$pkgdir/usr" mandir="$pkgdir/usr/share/man" install
chmod 0644 $pkgdir/usr/share/man/man1/*
}