19 lines
468 B
Plaintext
19 lines
468 B
Plaintext
|
# Description: A disk reporting library. It only supports a subset of the ATA S.M.A.R.T. functionality.
|
||
|
# URL: http://0pointer.de/blog/projects/being-smart.html
|
||
|
# Maintainer: lennart
|
||
|
# Packager: pierre at nutyx dot org
|
||
|
|
||
|
name=libatasmart
|
||
|
version=0.19
|
||
|
release=1
|
||
|
|
||
|
source=(http://0pointer.de/public/$name-$version.tar.xz)
|
||
|
|
||
|
build() {
|
||
|
cd $name-$version
|
||
|
./configure --prefix=/usr \
|
||
|
--disable-static
|
||
|
make
|
||
|
make DESTDIR=$PKG docdir=/usr/share/doc/libatasmart-$version install
|
||
|
}
|