diff options
Diffstat (limited to 'www/cclive')
-rwxr-xr-x | www/cclive/cclive.build | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/www/cclive/cclive.build b/www/cclive/cclive.build new file mode 100755 index 0000000..7503430 --- /dev/null +++ b/www/cclive/cclive.build @@ -0,0 +1,61 @@ +#!/bin/bash +# +# Maintainer: Deposite Pirate <ofni.sknuplatem@etaripd> + +source /usr/src/ports/Build/build.sh + +NAME=cclive +VERSION=0.7.2 +BUILD=1 +DEPENDS=('lua >= -1') + +# Description + +cat > ${PKG}/install/slack-desc <<EOF +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. Line +# up the first '|' above the ':' following the base package name, and the '|' +# on the right side marks the last column you can put a character in. You must +# make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':'. + +$(padd)|-----handy-ruler------------------------------------------------------| +${NAME}: cclive +${NAME}: +${NAME}: A command-line tool to download flash videos. +${NAME}: +${NAME}: Homepage: http://cclive.sourceforge.net +${NAME}: +${NAME}: +${NAME}: +${NAME}: +${NAME}: +${NAME}: +EOF + +# Sources + +SRCNAME[0]=quvi +SRCVERS[0]=0.2.14 +SRCPACK[0]=${URL[sf]}/${SRCVERS[0]}/${SRCNAME[0]}-${SRCVERS[0]}.tar.xz +SRCCOPY[0]="LGPL21" + +build0() +{ +CFLAGS="${FLAGS}" CXXFLAGS="${FLAGS}" \ +./configure \ + --build="${ARCH}-slackware-linux" \ + --disable-dependency-tracking \ + --disable-silent-rules \ + --disable-rpath \ + --enable-static=no \ + --enable-shared=yes \ + --prefix=/usr \ + --mandir="${SYS_DIR[man]}" \ + --sysconfdir=/etc \ + --libdir=/usr/lib$(libdirsuffix) \ + --localstatedir=/var +make -j 2 V=1 +make install DESTDIR="${PKG}" +changelog NEWS +} |