# $Id: PKGBUILD 372801 2018-08-19 19:00:02Z seblu $
# Maintainer: Sébastien Luttringer
# Contributor: XAVeRY - los dot danielos at gmail dot com

pkgname=lsscsi
pkgver=0.30
pkgrel=1
pkgdesc='A tool that lists devices connected via SCSI and its transports'
arch=('x86_64')
url='http://sg.danny.cz/scsi/lsscsi.html'
license=('GPL')
depends=('sysfsutils')
source=("http://sg.danny.cz/scsi/$pkgname-$pkgver.tgz")
md5sums=('298a700cd50bb4be1382d618f7b038f4')

build() {
  cd $pkgname-*/
  ./configure --prefix=/usr
  make
}

package() {
  cd $pkgname-*/
  make DESTDIR="$pkgdir" install
}

# vim:set ts=2 sw=2 et:
