diff options
author | root <root@rshg054.dnsready.net> | 2011-11-29 23:14:46 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2011-11-29 23:14:46 +0000 |
commit | 946f0c9fe48dfb648a8a0be065e92f237ce210fd (patch) | |
tree | 13387ae15c5ab9a50acdaa6ab02a076319c19047 /community/lsscsi | |
parent | 83c3c42a38bda36bdc56d594318958bc4cfd9b32 (diff) |
Tue Nov 29 23:14:46 UTC 2011
Diffstat (limited to 'community/lsscsi')
-rw-r--r-- | community/lsscsi/PKGBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/community/lsscsi/PKGBUILD b/community/lsscsi/PKGBUILD new file mode 100644 index 000000000..7f592af0b --- /dev/null +++ b/community/lsscsi/PKGBUILD @@ -0,0 +1,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: |