mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
23 lines
844 B
Bash
23 lines
844 B
Bash
# $Id: PKGBUILD 1201 2009-08-13 22:58:15Z dgriffiths $
|
|
# Maintainer: Geoffroy Carrier <geoffory.carrier@koon.fr>
|
|
# Contributor: Benjamin Andresen <bandresen AT gmail DOT com>
|
|
# Contributor: Kristaps Esterlins <esterlinsh@gmail.com>
|
|
# Contributor: Byron Clark <byron@theclarkfamily.name>
|
|
|
|
pkgname=clive
|
|
pkgver=2.1.14
|
|
pkgrel=2
|
|
pkgdesc="Video extraction/download tool for youtube and other websites."
|
|
url="http://code.google.com/p/clive/"
|
|
license=("custom:MIT")
|
|
arch=('i686' 'x86_64')
|
|
depends=('perl-www-curl' 'perl-uri' 'perl-html-parser' 'perl-config-tiny' 'perl-berkeleydb')
|
|
source=(http://clive.googlecode.com/files/$pkgname-$pkgver.tar.bz2)
|
|
md5sums=('ce55bb3b7cfeb679cb457e8a82d78bf3')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
make prefix=${pkgdir}/usr install || return 1
|
|
|
|
install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/LICENSE
|
|
}
|