blob: eb01dc1f6be82a9f022176a46f0b99a0d8da9d32 (
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.27
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 }
|