blob: 736dd52a8628140b810d598eed98e0832f5f6096 (
plain)
1 # Description: list information about SCSI devices
2 # URL: http://sg.danny.cz/scsi/lsscsi.html
3 # Maintainer: Thomas Penteker, tek at serverop dot de
4 # Depends on:
5
6 name=lsscsi
7 version=0.28
8 release=1
9 source=(http://sg.danny.cz/scsi/lsscsi-$version.tgz)
10
11 build() {
12 cd $name-$version
13 ./configure --prefix=/usr --mandir=/usr/man
14 make
15 make install DESTDIR=$PKG
16 }
|