mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-07 23:24:05 +00:00
21 lines
617 B
Bash
21 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
|
||
|
}
|