PKGBUILDs/core/libdownload/PKGBUILD
2009-09-27 08:52:26 -05:00

27 lines
615 B
Bash

# Maintainer: Alexander Foremny <alexanderforemny@gmail.com>
# Modified by OpenPogo
# Goes into /opt/usr. WHY?
pkgname=libdownload
pkgver=1.3
pkgrel=2
pkgdesc="URL based download library, forked from libfetch"
arch=('arm')
license=('BSD')
groups=('base')
depends=()
url="http://code.phraktured.net/?p=libdownload.git"
source=(http://code.phraktured.net/source/$pkgname-$pkgver.tar.gz
Makefile)
md5sums=('77e10293fd4262745110eb423a10490c'
'63f794256b49bcd8b07775a19fe8bace')
build() {
cd "$srcdir/libdownload-$pkgver"
rm Makefile
cp $srcdir/Makefile .
make || return 1
make DESTDIR=$pkgdir install
}