From cead33899ba54c737268558f651fd6d53a5c9d68 Mon Sep 17 00:00:00 2001 From: str1ngs Date: Thu, 23 Jun 2011 16:36:07 -0700 Subject: [PATCH] dtach: new package. --- srcpkgs/dtach/template | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 srcpkgs/dtach/template diff --git a/srcpkgs/dtach/template b/srcpkgs/dtach/template new file mode 100644 index 00000000000..8d58b6b69db --- /dev/null +++ b/srcpkgs/dtach/template @@ -0,0 +1,31 @@ +# Template file for 'dtach' +pkgname=dtach +version=0.8 +distfiles="${SOURCEFORGE_SITE}/$pkgname/$pkgname-$version.tar.gz" +build_style=custom-install +short_desc="dtach is a tiny program that emulates the detach feature of screen" +maintainer="Mike Rosset " +homepage="http://dtach.sourceforge.net/" +license="GPL-2" +checksum=16614ebddf8ab2811d3dc0e7f329c7de88929ac6a9632d4cb4aef7fe11b8f2a9 +long_desc=" + dtach is a tiny program that emulates the detach feature of screen, allowing + you to run a program in an environment that is protected from the controlling + terminal and attach to it later. dtach does not keep track of the contents of + the screen, and thus works best with programs that know how to redraw + themselves." + +Add_dependency run glibc +Add_dependency build glibc-devel + +do_build() +{ + make ${makejobs} +} + +do_install() +{ + install -Dm755 dtach "${DESTDIR}/usr/bin/dtach" + install -Dm644 dtach.1 "${DESTDIR}/usr/share/man/man1/dtach.1" +} +# vim:set ts=2 sw=2 et: