mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-28 23:21:53 +00:00
20 lines
617 B
Bash
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
|
|
}
|