dtach: initial import

This commit is contained in:
John Vogel 2019-07-27 19:41:38 -04:00
parent c038b349bb
commit f5b690238c
3 changed files with 31 additions and 0 deletions

7
dtach/.footprint Normal file
View File

@ -0,0 +1,7 @@
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/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/
-rw-r--r-- root/root usr/share/man/man1/dtach.1.gz

5
dtach/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF37qVbDG9CCZAdeTNzAM2tNoY19ODRfxK4eACECf2iuj9+f3wMdtiaqMlcm5vX58RWyuOwexnziVzJpEJovo9AAk=
SHA256 (Pkgfile) = 59953129bd5390fb563347598ac2137d127782436c896fcadd554554f7e0a3f5
SHA256 (.footprint) = 12dd84eecfdce7dfc9fb7d046cebe6d703158aa054310a21b0825bf8afbaff32
SHA256 (dtach-0.9.tar.gz) = 32e9fd6923c553c443fab4ec9c1f95d83fa47b771e6e1dafb018c567291492f3

19
dtach/Pkgfile Normal file
View File

@ -0,0 +1,19 @@
# Description: Emulates the detach feature of screen.
# URL: https://dtach.sourceforge.net/
# Maintainer: John Vogel, jvogel4 at stny dot rr dot com
name=dtach
version=0.9
release=1
source=(https://sourceforge.net/projects/$name/files/$name/$version/$name-$version.tar.gz)
build() {
cd $name-$version
./configure
make
install -Dm755 $name $PKG/usr/bin/$name
install -Dm644 ${name}.1 $PKG/usr/share/man/man1/${name}.1
}