Audiopreview is a command-line tool that can play previews of your audio files as well as video files, and even internet media streams. It will play your whole media library without any problem and can also be used as a regular media player. ok ajacoutot@
39 lines
1008 B
Makefile
39 lines
1008 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2010/07/31 08:53:22 kevlo Exp $
|
|
|
|
COMMENT = tool to play previews of audio and video files
|
|
|
|
DISTNAME = audiopreview-0.6
|
|
|
|
CATEGORIES = multimedia
|
|
|
|
HOMEPAGE = http://audiopreview.codealpha.net/audiopreview/
|
|
|
|
MAINTAINER = Kevin Lo <kevlo@openbsd.org>
|
|
|
|
# GPLv3
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
WANTLIB = c gio-2.0 glib-2.0 gmodule-2.0 gobject-2.0 gstreamer-0.10 \
|
|
gthread-2.0 pthread xml2
|
|
|
|
MASTER_SITES = http://audiopreview.codealpha.net/files/
|
|
|
|
MODULES = devel/gettext \
|
|
textproc/intltool
|
|
RUN_DEPENDS = ::multimedia/gstreamer-0.10/plugins-bad \
|
|
::multimedia/gstreamer-0.10/plugins-base \
|
|
::multimedia/gstreamer-0.10/plugins-ffmpeg \
|
|
::multimedia/gstreamer-0.10/plugins-good \
|
|
::multimedia/gstreamer-0.10/plugins-ugly
|
|
BUILD_DEPENDS = ${RUN_DEPENDS}
|
|
|
|
USE_X11 = Yes
|
|
CONFIGURE_STYLE = gnu
|
|
CONFIGURE_ENV = CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
.include <bsd.port.mk>
|