updated on Tue Jan 24 12:00:22 UTC 2012
[aur-mirror.git] / dtach-patched / PKGBUILD
blob21255499d804ee0328a2241acbef60c5a2f92964
1 # $Id: PKGBUILD 25 2009-07-16 14:26:17Z cbrannon $
2 # Maintainer: Chris Brannon <cmbrannon79@gmail.com>
3 # Contributor: Allan McRae <allan@archlinux.org>
4 # Contributor: Adam Vogt <vogt.adam@gmail.com>
5 # Contributor: Daniel J Griffiths <ghost1227@archlinux.us>
7 pkgname=dtach-patched
8 pkgver=0.8
9 pkgrel=1
10 pkgdesc="emulates the detach feature of screen"
11 arch=('i686' 'x86_64')
12 url="http://dtach.sourceforge.net/"
13 license=('GPL')
14 source=(http://downloads.sourceforge.net/sourceforge/dtach/dtach-$pkgver.tar.gz foreground.diff)
15 md5sums=('ec5999f3b6bb67da19754fcb2e5221f3' '625bae3f025548edd1d1d4bc866e51af')
17 build() {
18   cd ${srcdir}/dtach-${pkgver}
20   patch -Np1 -i ${srcdir}/foreground.diff || return 1
21   ./configure --prefix=/usr
22   make || return 1
23   install -Dm755 dtach ${pkgdir}/usr/bin/dtach
24   install -Dm644 dtach.1 ${pkgdir}/usr/share/man/man1/dtach.1
27 # vim:set ts=2 sw=2 et: