summaryrefslogtreecommitdiff
path: root/community/lshw/PKGBUILD
blob: 4864ffd7222a459e67aa7a5b320c1148bc01f890 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# $Id: PKGBUILD 58989 2011-11-20 19:39:08Z 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
pkgrel=1
pkgdesc="A small tool to provide detailed information on the hardware configuration of the machine."
url="http://ezix.org/project/wiki/HardwareLiSter"
license=('GPL')
arch=('i686' 'x86_64')
depends=('gcc-libs')
optdepends=('gtk2')
makedepends=('gcc' 'gtk2' 'sqlite3')
source=(http://ezix.org/software/files/lshw-$pkgver.tar.gz)
md5sums=('970bd9eb05fa3ae139a24a417465c54c')

build() {
  cd $srcdir/$pkgname-$pkgver

  make
  make gui
  make DESTDIR=$pkgdir/ install
  make DESTDIR=$pkgdir/ install-gui
}