mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-17 23:34:07 +00:00
22 lines
596 B
Bash
22 lines
596 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Maintainer: Jeff Mickey <jeff@archlinux.org>
|
||
|
|
||
|
pkgname=castget
|
||
|
pkgver=1.0.1
|
||
|
pkgrel=1
|
||
|
pkgdesc="A simple, command-line based RSS enclosure downloader."
|
||
|
arch=('i686' 'x86_'64)
|
||
|
url="http://www.nongnu.org/castget/"
|
||
|
license=('GPL')
|
||
|
depends=('glib2' 'libxml2' 'curl' 'id3lib')
|
||
|
options=('!libtool')
|
||
|
source=(http://savannah.nongnu.org/download/$pkgname/$pkgname-$pkgver.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd $startdir/src/$pkgname-$pkgver
|
||
|
./configure --prefix=/usr
|
||
|
make || return 1
|
||
|
make DESTDIR=$startdir/pkg install
|
||
|
}
|
||
|
md5sums=('b852dee0d98c005d20a2e6b4839939ad')
|