# $Id: PKGBUILD 97940 2013-10-01 16:51:03Z bpiotrowski $ # Maintainer: Chris Brannon # Contributor: Allan McRae # Contributor: Adam Vogt pkgname=dtach pkgver=0.8 pkgrel=6 pkgdesc="emulates the detach feature of screen" arch=('i686' 'x86_64' 'mips64el') 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 make } package() { cd "${srcdir}/${pkgname}-${pkgver}" 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: