1
0
forked from ports/contrib

setserial: initial import

This commit is contained in:
Mikhail Kolesnik 2006-11-02 17:57:48 +02:00
parent c053eeb5cd
commit 2e95769527
3 changed files with 25 additions and 0 deletions

6
setserial/.footprint Normal file
View File

@ -0,0 +1,6 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/setserial
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man8/
-rw-r--r-- root/root usr/man/man8/setserial.8.gz

1
setserial/.md5sum Normal file
View File

@ -0,0 +1 @@
c4867d72c41564318e0107745eb7a0f2 setserial-2.17.tar.gz

18
setserial/Pkgfile Normal file
View File

@ -0,0 +1,18 @@
# Description: A program that allows to view and change various attributes of a serial device
# URL: http://setserial.sourceforge.net/
# Maintainer: Mikhail Kolesnik, mike at openbunker dot org
# Depends on:
name=setserial
version=2.17
release=2
# it was the first google's answer (SF does not work)
source=(http://fresh.t-systems-sfr.com/linux/src/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr
make
/usr/bin/install -D -m 755 setserial $PKG/usr/bin/setserial
/usr/bin/install -D -m 644 setserial.8 $PKG/usr/man/man8/setserial.8
}