diff options
author | miwi <miwi@FreeBSD.org> | 2010-02-03 08:28:57 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2010-02-03 08:28:57 +0800 |
commit | 03bc2dc58c110187967e8d5f84b45c2eaf7fbf16 (patch) | |
tree | f9a0167ab0a3040a08cd25b16c2605a4e0a9bdb4 /multimedia/quvi/Makefile | |
parent | 2f1b9a7489a07aed4283d0f9558dc725675e1d08 (diff) | |
download | freebsd-ports-gnome-03bc2dc58c110187967e8d5f84b45c2eaf7fbf16.tar.gz freebsd-ports-gnome-03bc2dc58c110187967e8d5f84b45c2eaf7fbf16.tar.zst freebsd-ports-gnome-03bc2dc58c110187967e8d5f84b45c2eaf7fbf16.zip |
quvi is a command line tool for parsing video download links.
It supports Youtube and other similar video websites.
libquvi is a library for parsing video download links with
C API. It is written in C and intended to be a cross-platform
library.
This project started as a cclive spin-off after receiving
a request for a cclive library.
WWW: http://quvi.googlecode.com/
PR: ports/143499
Submitted by: Toni Gundogdu <legatvs at gmail.com>
Diffstat (limited to 'multimedia/quvi/Makefile')
-rw-r--r-- | multimedia/quvi/Makefile | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/multimedia/quvi/Makefile b/multimedia/quvi/Makefile new file mode 100644 index 000000000000..89a839f3fa8c --- /dev/null +++ b/multimedia/quvi/Makefile @@ -0,0 +1,38 @@ +# New ports collection makefile for: quvi +# Date created: 2 February 2010 +# Whom: Toni Gundogdu <legatvs@gmail.com> +# +# $FreeBSD$ +# + +PORTNAME= quvi +PORTVERSION= 0.1.0 +CATEGORIES= multimedia devel +MASTER_SITES= GOOGLE_CODE + +MAINTAINER= legatvs@gmail.com +COMMENT= Query video library for Youtube like websites + +LIB_DEPENDS= curl.5:${PORTSDIR}/ftp/curl \ + pcre.0:${PORTSDIR}/devel/pcre + +USE_LDCONFIG= yes +SHLIB_VER= 0 + +MAKE_ENV= SHLIB_VER="${SHLIB_VER}" +PLIST_SUB= SHLIB_VER="${SHLIB_VER}" + +USE_BZIP2= yes +GNU_CONFIGURE= yes +USE_GNOME= pkgconfig +USE_ICONV= yes + +OPTIONS= SMUT "Enable adult website support" off + +.include <bsd.port.pre.mk> + +.if defined(WITH_SMUT) +CONFIGURE_ARGS+=--enable-smut +.endif + +.include <bsd.port.post.mk> |