blob: 9f882f5626fc0c8d0d451139894541153b936e2a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Description: 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
}
|