diff options
Diffstat (limited to 'testing/smartmontools/APKBUILD')
-rw-r--r-- | testing/smartmontools/APKBUILD | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/testing/smartmontools/APKBUILD b/testing/smartmontools/APKBUILD new file mode 100644 index 000000000..8ba05087a --- /dev/null +++ b/testing/smartmontools/APKBUILD @@ -0,0 +1,31 @@ +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=smartmontools +pkgver=5.38 +pkgrel=0 +pkgdesc="Control and monitor S.M.A.R.T. enabled ATA and SCSI Hard Drives." +url="http://smartmontools.sourceforge.net" +license="GPL" +depends= +makedepends= +subpackages="$pkgname-doc" +source="http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz + smartd.initd + smartd.confd + " + +build() { + cd "$srcdir"/$pkgname-$pkgver + ./configure --prefix=/usr --sysconfdir=/etc + make || return 1 +} + +package() { + cd "$srcdir"/$pkgname-$pkgver + make DESTDIR="$pkgdir"/ install + rm -r "$pkgdir"/etc/rc.d + install -Dm755 ../smartd.initd "$pkgdir"/etc/init.d/smartd + install -Dm644 ../smartd.confd "$pkgdir"/etc/conf.d/smartd +} +md5sums="a282846532ecbd6b4a28072373b3a70b smartmontools-5.38.tar.gz +64e6fc908146b885aa3f88796edf72f3 smartd.initd +371cdb7cc9dc924b6d12224d66b193c6 smartd.confd" |