summaryrefslogtreecommitdiff
path: root/community/cclive/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/cclive/PKGBUILD')
-rw-r--r--community/cclive/PKGBUILD23
1 files changed, 10 insertions, 13 deletions
diff --git a/community/cclive/PKGBUILD b/community/cclive/PKGBUILD
index 8b57f4af2..af24f4a0f 100644
--- a/community/cclive/PKGBUILD
+++ b/community/cclive/PKGBUILD
@@ -1,30 +1,27 @@
-# $Id: PKGBUILD 47638 2011-05-24 14:28:23Z tdziedzic $
+# $Id: PKGBUILD 52380 2011-07-24 03:47:58Z dreisner $
# 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=3
+pkgver=0.7.4.1
+pkgrel=1
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')
+makedepends=('boost')
source=("http://downloads.sourceforge.net/project/${pkgname}/0.7/${pkgname}-${pkgver}.tar.gz")
-md5sums=('de25297e9f34677d4d1920078d9cf254')
+md5sums=('5416049225c45c20e4ebe9a6e90a5a58')
build() {
- cd ${pkgname}-${pkgver}
-
- cmake \
- -DCMAKE_BUILD_TYPE=debug \
- -DCMAKE_INSTALL_PREFIX=/usr
+ cd "$pkgname-$pkgver"
+ ./configure --prefix=/usr
+ make
}
package() {
- cd ${pkgname}-${pkgver}
-
- make DESTDIR="${pkgdir}" install
+ cd "$pkgname-$pkgver"
+ make DESTDIR="$pkgdir" install
}