PKGBUILDs/community/dtach/PKGBUILD

25 lines
661 B
Bash
Raw Normal View History

2009-10-10 02:15:33 +00:00
# $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: