diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/dtach/PKGBUILD |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/dtach/PKGBUILD')
-rw-r--r-- | community/dtach/PKGBUILD | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/community/dtach/PKGBUILD b/community/dtach/PKGBUILD new file mode 100644 index 000000000..1324f4731 --- /dev/null +++ b/community/dtach/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 17291 2010-05-22 18:01:10Z cbrannon $ +# Maintainer: Chris Brannon <cmbrannon79@gmail.com> +# Contributor: Allan McRae <allan@archlinux.org> +# Contributor: Adam Vogt <vogt.adam@gmail.com> + +pkgname=dtach +pkgver=0.8 +pkgrel=4 +pkgdesc="emulates the detach feature of screen" +arch=('i686' 'x86_64') +url="http://dtach.sourceforge.net/" +license=('GPL') +depends=('glibc') +source=(http://downloads.sourceforge.net/sourceforge/dtach/$pkgname-$pkgver.tar.gz) +md5sums=('ec5999f3b6bb67da19754fcb2e5221f3') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + ./configure --prefix=/usr || return 1 + make || return 1 +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + install -Dm755 dtach "${pkgdir}/usr/bin/dtach" || return 1 + install -Dm644 dtach.1 "${pkgdir}/usr/share/man/man1/dtach.1" || return 1 +} + +# vim:set ts=2 sw=2 et: |