6dececeebd
The 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. You can see the list of supported sites from 'quvi --support'.
33 lines
915 B
Makefile
33 lines
915 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2010/12/13 12:43:17 ryoon Exp $
|
|
#
|
|
|
|
DISTNAME= quvi-0.2.10
|
|
CATEGORIES= net multimedia www
|
|
MASTER_SITES= http://quvi.googlecode.com/files/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= ryoon@NetBSD.org
|
|
HOMEPAGE= http://code.google.com/p/quvi/
|
|
COMMENT= The quvi is command line tool and library for parsing video links
|
|
LICENSE= gnu-gpl-v3
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
USE_TOOLS+= pkg-config
|
|
USE_LIBTOOL= yes
|
|
GNU_CONFIGURE= yes
|
|
USE_LANGUAGES= c c++
|
|
|
|
CONFIGURE_ARGS+= --enable-nsfw
|
|
|
|
PKGCONFIG_OVERRIDE+= libquvi.pc.in
|
|
|
|
BUILDLINK_API_DEPENDS.pcre+= pcre>=7.8
|
|
.include "../../devel/pcre/buildlink3.mk"
|
|
BUILDLINK_API_DEPENDS.curl+= curl>=7.18.0
|
|
.include "../../www/curl/buildlink3.mk"
|
|
BUILDLINK_API_DEPENDS.libiconv+= libiconv>=1.12.0
|
|
.include "../../converters/libiconv/buildlink3.mk"
|
|
BUILDLINK_API_DEPENDS.lua+= lua>=5.1
|
|
.include "../../lang/lua/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|