diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/cclive |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/cclive')
-rw-r--r-- | community/cclive/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/community/cclive/PKGBUILD b/community/cclive/PKGBUILD new file mode 100644 index 000000000..6e5c1766d --- /dev/null +++ b/community/cclive/PKGBUILD @@ -0,0 +1,26 @@ +# $Id: PKGBUILD 43777 2011-03-29 18:26:08Z lfleischer $ +# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de> +# Contributor: joyfulgirl@archlinux.us +# Contributor: nathan owe ndowens04 at gmail dot com + +pkgname=cclive +pkgver=0.7.3.1 +pkgrel=2 +pkgdesc='Commandline downloader for popular video websites.' +arch=('i686' 'x86_64') +url='http://cclive.sourceforge.net/' +license=('GPL3') +depends=('boost-libs' 'quvi') +makedepends=('cmake' 'boost') +source=("http://downloads.sourceforge.net/project/${pkgname}/0.7/${pkgname}-${pkgver}.tar.gz") +md5sums=('de25297e9f34677d4d1920078d9cf254') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + cmake -DCMAKE_BUILD_TYPE=debug -DCMAKE_INSTALL_PREFIX=/usr +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +} |