22 lines
709 B
Plaintext
22 lines
709 B
Plaintext
# Description: Monitoring program for motherboards. Also includes mbmon command line utility.
|
|
# URL: http://www.nt.phys.kyushu-u.ac.jp/shimizu/download/download.html
|
|
# Maintainer: Jose V Beneyto, joberui at ei dot upv dot es
|
|
# Packager: Jose V Beneyto, joberui at ei dot upv dot es
|
|
# Depends on: x11
|
|
|
|
name=xmbmon
|
|
version=2.0.5
|
|
release=1
|
|
source=(http://www.nt.phys.kyushu-u.ac.jp/shimizu/download/${name}/${name}205.tar.gz)
|
|
|
|
build() {
|
|
cd ${name}205
|
|
./configure --prefix=/usr \
|
|
--with-x
|
|
make
|
|
install -d $PKG/usr/{bin,man/man1,X11R6/man/man1}
|
|
install -m 755 mbmon $name $PKG/usr/bin
|
|
install -m 644 mbmon.1 $PKG/usr/man/man1
|
|
install -m 644 $name.1x $PKG/usr/X11R6/man/man1
|
|
}
|