blob: f6cd4fb8216f162ee642f3ab629e8fd61206e069 (
plain)
1 # Description: controls magnetic tape drive operation (SCSI & QIC-02)
2 # URL: ftp://ftp.ibiblio.org/pub/linux/system/backup/
3 # Maintainer: Jose V Beneyto, sepen at users dot sourceforge dot net
4 # Packager: Manuel Ruiz, manuel dot tienza at gmail dot com
5 # Depends on:
6
7 name=mt-st
8 version=0.9b
9 release=2
10 source=(http://www.ibiblio.org/pub/Linux/system/backup/$name-$version.tar.gz)
11
12 build() {
13 cd $name-$version
14 sed -e 's|<linux/qic117.h>|"qic117.h"|g' -i mtio.h
15 make CFLAGS="$CFLAGS" CC=gcc
16 mkdir -p $PKG/usr/{bin,man/man1,man/man8}
17 cp mt stinit $PKG/usr/bin/
18 cp mt.1 $PKG/usr/man/man1/
19 cp stinit.8 $PKG/usr/man/man8/
20 }
|