summaryrefslogtreecommitdiff
path: root/community/lsscsi/PKGBUILD
blob: 7f592af0ba02b73dd168afaf5513ea222ae047df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# $Id: PKGBUILD 59629 2011-11-28 22:05:11Z seblu $
# Maintainer: Sebastien Luttringer <seblu+arch@seblu.net>
# Contributor : XAVeRY - los dot danielos at gmail dot com

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

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

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

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