You are not logged in.
Anyone using dvbcut? The aur version won't compile, nor the tar package version from sourceforge nor the svn version (170). It all seems to boil down to qt3/qt4 mismatches. I have both versions installed yet I get; configure: error: Qt library not found
I even tried compiling the latest Ubuntu version with same results (desperation?)
I know it's an old app but it did the job very well of editing mpg/m2t files. I do not like avidemux!
Fedora and Ubuntu seem to have '-dev' packages which solves these kinds of problems. And hacking those libraries manually is too tricky to be worth it. Is there an Arch solution somewhere?
Last edited by swanson (2011-09-25 14:49:02)
Offline
Yes, I've seen the older threads but they had old problems. Some more info; I've tried after running autoconf;
./configure --with-qt3-include=/usr/include/Qt
./configure --with-qt3-include=/usr/include/Qt3Support
./configure --with-qt3=/usr/include/Qt
./configure --with-qt3=/usr/include/Qt3SupportNo qt libraries found.
Offline
Finally got this to compile;
https://launchpad.net/~bojo42/+archive/ … rig.tar.gz
Let's see if it works...
Offline
Seems that this modified PKGBUILD works:
# Contributor: sp42b <sp42b|a_t|gmx.net>
# Contributor: AndyRTR <andreas.radke@freenet.de>
## Contributor: swanson
pkgname=dvbcut
pkgver=0.6.2
pkgrel=1
pkgdesc="Qt3 application for cutting parts out of DVB streams"
arch=('i686' 'x86_64')
url="http://dvbcut.sourceforge.net/index.html"
license="GPL"
depends=('qt3' 'libao' 'libmad' 'a52dec')
optdepends=('mplayer: for video playback inside of DVBCUT')
source=(https://launchpad.net/~frafu/+archive/ppa/+files/dvbcut_0.6.2-0ppa%7Esvn178%7Enatty1.tar.gz)
md5sums=('cc49cd50dd44184d3db6125297a92ab5')
build() {
cd ${srcdir}/dvbcut-0.6.2-0ppa~svn178~natty1
msg "${srcdir}/dvbcut-0.6.2-0ppa~svn178~natty1"
autoconf
./configure --prefix=/usr
make
install -Dm755 ${srcdir}/dvbcut-0.6.2-0ppa~svn178~natty1/bin/dvbcut ${pkgdir}/usr/bin/dvbcut
install -Dm644 ${srcdir}/dvbcut-0.6.2-0ppa~svn178~natty1/dvbcut.1 ${pkgdir}/usr/share/man/man1/dvbcut.1
install -Dm644 ${srcdir}/dvbcut-0.6.2-0ppa~svn178~natty1/dvbcut.desktop ${pkgdir}/usr/share/applications/dvbcut.desktop
install -Dm644 ${srcdir}/dvbcut-0.6.2-0ppa~svn178~natty1/dvbcut.svg ${pkgdir}/usr/share/pixmaps/dvbcut.svg
}OK for the AUR?
Last edited by swanson (2011-08-22 06:17:04)
Offline