diff options
Diffstat (limited to 'community/lshw')
-rw-r--r-- | community/lshw/PKGBUILD | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/community/lshw/PKGBUILD b/community/lshw/PKGBUILD index 4864ffd72..2a42c84d2 100644 --- a/community/lshw/PKGBUILD +++ b/community/lshw/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 58989 2011-11-20 19:39:08Z spupykin $ +# $Id: PKGBUILD 61963 2012-01-11 15:42:56Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Stefano Zamprogno <stefano dot zamprogno at gmail dot com> # Contributor: Chuck Yang <Chuck.Yang@gmail.com> pkgname=lshw -pkgver=B.02.15 +pkgver=B.02.16 pkgrel=1 pkgdesc="A small tool to provide detailed information on the hardware configuration of the machine." url="http://ezix.org/project/wiki/HardwareLiSter" @@ -14,13 +14,16 @@ depends=('gcc-libs') optdepends=('gtk2') makedepends=('gcc' 'gtk2' 'sqlite3') source=(http://ezix.org/software/files/lshw-$pkgver.tar.gz) -md5sums=('970bd9eb05fa3ae139a24a417465c54c') +md5sums=('67479167add605e8f001097c30e96d0d') build() { cd $srcdir/$pkgname-$pkgver - make make gui +} + +package() { + cd $srcdir/$pkgname-$pkgver make DESTDIR=$pkgdir/ install make DESTDIR=$pkgdir/ install-gui } |