blob: d9ca8a8ead442b82fa5379e01dde23e9a7a835b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Decription: Utilitaires génériques SCSI
# URL: http://sg.danny.cz/sg/sg3_utils.html
# Maintainer: NuTyX core team
# Packager: lesibel at free dot fr
# Depends on:
name=sg3_utils
version=1.29
release=1
source=(http://sg.danny.cz/sg/p/$name-$version.tgz)
build() {
cd $name-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}
|