As the package seemed to be orphaned I've adopted it and submited the changes. Enjoy! ;-)
Search Criteria
Package Details: video4fuze 0.6+-2
Package Actions
| 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: | |
| Submitter: | hefeweiz3n |
| Maintainer: | None |
| Last Packager: | None |
| Votes: | 0 |
| First Submitted: | 2010-07-15 09:42 |
| Last Updated: | 2011-12-10 22:41 |
Dependencies (6)
- ffmpeg
- fuzemux
- mencoder
- python-imaging
- python2>=2.5
- python2-pyqt>=4.5
Required by (0)
Sources
Latest Comments
Anonymous comment
Anonymous comment
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}
}