PKGBUILDs/community/dtach/PKGBUILD
2009-10-09 21:15:33 -05:00

24 lines
661 B
Bash

# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
# Maintainer: Allan McRae <allan@archlinux.org>
# Contributor: Adam Vogt <vogt.adam@gmail.com>
pkgname=dtach
pkgver=0.8
pkgrel=3
pkgdesc="emulates the detach feature of screen"
arch=('i686' 'x86_64')
url="http://dtach.sourceforge.net/"
license=('GPL')
source=(http://downloads.sourceforge.net/sourceforge/dtach/$pkgname-$pkgver.tar.gz)
md5sums=('ec5999f3b6bb67da19754fcb2e5221f3')
build() {
cd ${srcdir}/${pkgname}-${pkgver}
./configure --prefix=/usr
make || return 1
install -Dm755 dtach ${pkgdir}/usr/bin/dtach
install -Dm644 dtach.1 ${pkgdir}/usr/share/man/man1/dtach.1
}
# vim:set ts=2 sw=2 et: