diff options
author | root <root@rshg054.dnsready.net> | 2013-08-11 01:21:34 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-08-11 01:21:34 -0700 |
commit | 18a41d682d6e91e0d28fce23eb75292f477bd620 (patch) | |
tree | bce8f660d7d0b6541cadbc49bf1bac2434e4c0c6 /community/xdiskusage/PKGBUILD | |
parent | 0ade1da67addf154d93c6a6399b0a3d5a18a3336 (diff) |
Sun Aug 11 01:21:31 PDT 2013
Diffstat (limited to 'community/xdiskusage/PKGBUILD')
-rw-r--r-- | community/xdiskusage/PKGBUILD | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/community/xdiskusage/PKGBUILD b/community/xdiskusage/PKGBUILD deleted file mode 100644 index 71491ef78..000000000 --- a/community/xdiskusage/PKGBUILD +++ /dev/null @@ -1,47 +0,0 @@ -# $Id: PKGBUILD 65246 2012-02-20 12:32:09Z 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=7 -pkgdesc="xdiskusage is a user-friendly program to show you what is using up all your disk space" -arch=('i686' 'x86_64') -depends=('fltk') -makedepends=('libxi') -license=('GPL') -url="http://xdiskusage.sourceforge.net" -options=(!emptydirs) -source=(http://xdiskusage.sourceforge.net/$pkgname-$pkgver.tgz - 'stdin-is-null.patch') -md5sums=('a902aa9d73761ade98256c3cd5c1f533' - '0181b66b44e382e44c91602d8de9a7b6') - -build() { - cd "$srcdir/$pkgname-$pkgver" - sed -i 's/-lGL -lGLU/-lXft/' makeinclude.in - - patch -Np1 -i "$srcdir/stdin-is-null.patch" - - [ $CARCH == "x86_64" ] && patch xdiskusage.C <<EOF -991c991 -< switch ((int)v) { ---- -> switch ((long long)v) { -1004c1004 -< int n = (int)v; ---- -> int n = (long long)v; -EOF - - ./configure --prefix=/usr - install -d "$pkgdir/usr/bin" "$pkgdir/usr/share/man/man1" - 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/* -} |