PKGBUILDs/extra/snarf/PKGBUILD

21 lines
613 B
Bash
Raw Normal View History

2009-10-10 02:23:22 +00:00
# $Id: PKGBUILD 35907 2009-04-18 06:34:03Z eric $
# Maintainer: dorphell <dorphell@archlinux.org>
# Committer: Judd Vinet <jvinet@zeroflux.org>
pkgname=snarf
pkgver=7.0
pkgrel=3
pkgdesc="Command-line URL retrieval tool (http/ftp/gopher)"
arch=(i686 x86_64)
url="http://www.xach.com/snarf/"
license=('GPL')
depends=('glibc')
source=(http://www.xach.com/snarf/download/source/$pkgname-$pkgver.tar.gz)
md5sums=('7470d8457bc0d347b5cd8668c9e735c4')
build() {
cd $srcdir/$pkgname-$pkgver
./configure --prefix=/usr --mandir=/usr/share/man || return 1
make || return 1
make DESTDIR=$pkgdir install || return 1
}