diff options
author | John Vogel <jvogel4@stny.rr.com> | 2019-07-27 19:41:38 -0400 |
---|---|---|
committer | John Vogel <jvogel4@stny.rr.com> | 2019-07-27 19:41:38 -0400 |
commit | f5b690238c707d427c8c477e566e54dbc932e1b4 (patch) | |
tree | 498a84ec33886340b3e430482713d4903beeeb08 /dtach | |
parent | c038b349bb22fa0d9f53141a13044116cdd4fe34 (diff) | |
download | contrib-f5b690238c707d427c8c477e566e54dbc932e1b4.tar.gz contrib-f5b690238c707d427c8c477e566e54dbc932e1b4.tar.xz |
dtach: initial import
Diffstat (limited to 'dtach')
-rw-r--r-- | dtach/.footprint | 7 | ||||
-rw-r--r-- | dtach/.signature | 5 | ||||
-rw-r--r-- | dtach/Pkgfile | 19 |
3 files changed, 31 insertions, 0 deletions
diff --git a/dtach/.footprint b/dtach/.footprint new file mode 100644 index 000000000..47759cf6b --- /dev/null +++ b/dtach/.footprint @@ -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 diff --git a/dtach/.signature b/dtach/.signature new file mode 100644 index 000000000..cad8d3363 --- /dev/null +++ b/dtach/.signature @@ -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 diff --git a/dtach/Pkgfile b/dtach/Pkgfile new file mode 100644 index 000000000..c9eb001a8 --- /dev/null +++ b/dtach/Pkgfile @@ -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 +} |