You are not logged in.
Well on a quest to find the best linux video player I found a project called Cineplay. I tryed to build it myself but im a pretty big noob when it come to packages. Searched Aur and forums but found nothing, can anyone help. I think its based on Openlibraries
www.silversoft.com/cineplay/
http://trac.cinefx.org
Offline
could help you with that, or at leas try
These are the dependencies:
Current dependencies are openlibraries (full build with ffmpeg) and Qt3
Have you ever encountered this error when making the package?:
Project MESSAGE: BUILD_ID is set to: \"Sunday-04:13-01022009\"
Project ERROR: pkg-config failed for some reason; check PKG_CONFIG_PATH is set
make: *** No targets specified and no makefile found. Stop.I've managed to fix some errors concerning the openlibraries package, so I'll fix this one soon or later. Here is the PKGBUILD:
# Maintainer: Ali H. Caliskan <neurocratie@yahoo.com>
pkgname=cineplay
pkgver=1.2
pkgrel=1
pkgdesc="This product is open source software and is developed under the GPL by the cinefx project"
arch=('i686' 'x86_64')
url="http://trac.cinefx.org"
license=('GPL2')
depends=('qt' 'ffmpeg' 'boost' 'openlibraries')
makedepends=('pkgconfig')
options=('!libtool')
[ "$CARCH" = "i686" ] && ARCH=x86
[ "$CARCH" = "x86_64" ] && ARCH=x86_64
source=('cinesuite.tar.gz')
md5sums=('4d7846dd1b7d08101e349285eabc6ae9')
build() {
cd $startdir/src/cinesuite/src
"/usr/bin/qmake" -o Makefile cineplay.pro
make || return 1
make DESTDIR=$pkgdir install || return 1
}Last edited by ahcaliskan (2009-02-01 14:56:20)
Offline
Fixed "check PKG_CONFIG_PATH" by modifing olibs.pri file to:
OLIB_PREFIX=/usr
OLIB_INCLUDE=$$OLIB_PREFIX/include/openlibraries-0.4.0
OLIB_LIBS=$$OLIB_PREFIX/lib64/openlibraries-0.4.0However, openlibraries cause build error:
/usr/include/openlibraries-0.4.0/openpluginlib/pl/GL_utility.hpp:24: error: too many arguments to function 'std::pair<int, unsigned int> olib::openpluginlib::pf_to_gl_format(const olib::openpluginlib::wstring&)'
widgets/opengl_store.cpp:589: error: at this point in file
/usr/include/openlibraries-0.4.0/openpluginlib/pl/GL_utility.hpp:24: error: too many arguments to function 'std::pair<int, unsigned int> olib::openpluginlib::pf_to_gl_format(const olib::openpluginlib::wstring&)'
widgets/opengl_store.cpp:797: error: at this point in file
widgets/opengl_store.cpp: At global scope:
widgets/opengl_store.cpp:972: warning: unused parameter 'f'
make: *** [opengl_store.o] Error 1
==> ERROR: Build Failed.
I don't think I can do anything about it. Besides neither openlibraries nor cineplay seems to be actively developed! Sorry mate! You could always try cineplay with wine.
Last edited by ahcaliskan (2009-02-01 15:06:59)
Offline
hmm, ok geuss i'll just move on with my search for best player. Thanks anyway
Offline