Package Details: video4fuze 0.6+-2

Package Base: video4fuze
Description: A tool to convert and transfer videos to the Sansa Fuze media player
Upstream URL: http://code.google.com/p/video4fuze/
Category: multimedia
Licenses: GPL3
Submitter: hefeweiz3n
Maintainer: None
Last Packager: None
Votes: 0
First Submitted: 2010-07-15 09:42
Last Updated: 2011-12-10 22:41

Latest Comments

Anonymous comment

2011-12-10 22:46

As the package seemed to be orphaned I've adopted it and submited the changes. Enjoy! ;-)

Anonymous comment

2011-12-03 22:22

Seems there is a problem using this app with python 3.x. I've corrected the PKGBUILD to build and run using python 2.x

Here is the working PKGBUILD

# Maintainer: Tomasz Owczarek <tomek.owczarek at gmail dot com>

pkgname=video4fuze
pkgver=0.6+
pkgrel=2
pkgdesc="A tool to convert and transfer videos to the Sansa Fuze media player"
arch=("i686" "x86_64")
url="http://code.google.com/p/video4fuze/"
license=('GPL3')
depends=('python2-pyqt>=4.5' 'mencoder' 'ffmpeg' 'python2>=2.5' 'python-imaging' 'fuzemux')
makedepends=('qt>=4.5')

source=(http://video4fuze.googlecode.com/files/${pkgname}-${pkgver}.tar.gz)
sha1sums=(51a61a35e46770ea2c899ec3417403b54fc30906)

build() {
cd ${pkgname}-${pkgver}

# Force to use python2 in scripts

sed -i "s/python/python2/" dist/fuze
sed -i "s/python/python2/" dist/video4fuze

lrelease video4fuze_e4x.pro
python2 setup.py install --root ${pkgdir}
}