mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
35 lines
1.3 KiB
Bash
35 lines
1.3 KiB
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Ronald van Haren <ronald.archlinux.org>
|
|
|
|
pkgname=freevo
|
|
pkgver=1.9.0
|
|
pkgrel=1
|
|
pkgdesc="Freevo is an open-source home theatre PC platform based on Linux and a number of open-source audio/video tools."
|
|
url="http://freevo.sourceforge.net/"
|
|
license=('GPL2')
|
|
arch=('i686' 'x86_64')
|
|
depends=('lame' 'flac' 'faad2' 'cdparanoia' 'vorbis-tools' \
|
|
'fbset' 'smpeg' 'pil' 'python-pysqlite-legacy' \
|
|
'pyxml' 'lsdvd' 'twisted' 'python-numeric' 'python-pygame'\
|
|
'kaa-metadata' 'kaa-imlib2' 'beautiful-soup')
|
|
optdepends=('mplayer: most features' 'xine-lib: can be used instead of mplayer' 'tvtime: watching tv' 'xmltv: parsing online tv guides')
|
|
install=freevo.install
|
|
options=('docs')
|
|
source=(http://downloads.sourceforge.net/freevo/$pkgname-$pkgver.tar.gz \
|
|
freevo.desktop)
|
|
md5sums=('aeb05e52f996258386af2951688bf6e3'
|
|
'9c5fcea7149bf52978730229831d1a40')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
|
|
python setup.py install --prefix=$pkgdir/usr
|
|
|
|
install -Dm644 local_conf.py.example $pkgdir/usr/share/doc/freevo/local_conf.py.example
|
|
|
|
# install .desktop file and icon
|
|
install -Dm644 $srcdir/$pkgname-$pkgver/share/icons/misc/freevo_app.png \
|
|
$pkgdir/usr/share/pixmaps/freevo.png
|
|
install -Dm644 $srcdir/freevo.desktop \
|
|
$pkgdir/usr/share/applications/freevo.desktop
|
|
}
|