blob: 5a09e2f0065f43a7659cc7975f2f64338f6c18d6 (
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 90283 2013-05-10 22:36:28Z seblu $
# Maintainer: Sébastien Luttringer
# Contributor : XAVeRY - los dot danielos at gmail dot com
pkgname=lsscsi
pkgver=0.27
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=('33ab2927a9e567a47905e6a618c17859')
build() {
cd ${pkgname}-${pkgver}
./configure --prefix=/usr
make
}
package() {
cd ${pkgname}-${pkgver}
make DESTDIR="${pkgdir}" install
}
# vim:set ts=2 sw=2 et:
|