mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
20 lines
613 B
Bash
20 lines
613 B
Bash
# $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
|
|
}
|