PKGBUILDs/community/gsmartcontrol/PKGBUILD
2009-10-09 21:15:33 -05:00

20 lines
617 B
Bash

# Contributor: Daniel J Griffiths <ghost1227@archlinux.us>
pkgname=gsmartcontrol
pkgver=0.8.5
pkgrel=1
pkgdesc="A graphical user interface for the smartctl hard disk drive health inspection tool."
arch=('i686' 'x86_64')
url="http://gsmartcontrol.berlios.de/home/index.php/en/Home"
license=('GPL3')
depends=('smartmontools' 'pcre' 'gtkmm' 'libglademm')
install=${pkgname}.install
source=(http://download.berlios.de/gsmartcontrol/$pkgname-$pkgver.tar.bz2)
md5sums=('654ee0b77665206d4d8a46080c5747b6')
build() {
cd $srcdir/$pkgname-$pkgver
./configure --prefix=/usr
make || return 1
make DESTDIR=$pkgdir install
}