dtach: initial import

This commit is contained in:
Mark Rosenstand 2006-10-22 10:16:51 +02:00
parent d5d6fa111b
commit 6503818a98
4 changed files with 23 additions and 0 deletions

6
dtach/.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/dtach
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/dtach.1.gz

1
dtach/.md5sum Normal file
View File

@ -0,0 +1 @@
9aa11433d5a5b4b9fed271f10102cf6f dtach-0.7.tar.gz

0
dtach/.sync Normal file
View File

16
dtach/Pkgfile Normal file
View File

@ -0,0 +1,16 @@
# Description: Tiny implementation of the detach feature from screen(1)
# URL: http://dtach.sourceforge.net/
# Maintainer: Mark Rosenstand, mark at borkware dot net
name=dtach
version=0.7
release=1
source=(http://dl.sourceforge.net/sourceforge/dtach/dtach-$version.tar.gz)
build() {
cd dtach-$version
./configure --prefix=/usr
make
install -D dtach $PKG/usr/bin/dtach
install -D -m 644 dtach.1 $PKG/usr/man/man1/dtach.1
}