updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / muffin / PKGBUILD
blob17a517d5a83e56a8ea944779e5b2763c7f20753d
1 # Maintainer: Eddotan <fuzakenaideyo7@gmail.com>
2 pkgname=muffin
3 pkgver=hg
4 pkgrel=6
5 pkgdesc="Un asistente de traduccion de anime escrito en Python usando wxPython y las librerias de MplayerCtrl"
6 arch=('i686')
7 license=('GPL')
8 install=muffin.install
9 url="http://code.google.com/p/muffin/"
10 makedepends=(mercurial)
11 depends=(python2 wxpython python-simplejson mplayer)
12 source=("muffin_exec")
13 md5sums=('e1b898490297e4be126fcbd5f62df8df')
15 _repo=https://muffin.googlecode.com/hg/
16 _repomod=muffin
18 _mpctrl=http://pypi.python.org/packages/source/M/MplayerCtrl/MplayerCtrl-0.3.0.tar.gz#md5=8bede6ffc4a6dc54c7c2b9dffd7d872d
19 _mpctrlpy=MplayerCtrl-0.3.0
21 build() {
22   cd $srcdir
23   
24   if [ -d $_repomod ]; then
25     cd $_repomod && hg revert --all && hg pull && hg update
26   else
27     hg clone $_repo $_repomod
28   fi              
30   mkdir -p $pkgdir/usr/{share,bin}
32   msg "Copiando libreria necesaria para enlazar muffin con mplayer..."
33   wget $_mpctrl && tar xvfz $_mpctrlpy.tar.gz && cp $_mpctrlpy/MplayerCtrl.py $startdir/src/muffin/src/
34     
35   msg "Copiando archivos y creando enlace..."
36   cp -Rf $startdir/src/muffin/src $pkgdir/usr/share/muffin
37   cp ../muffin_exec $pkgdir/usr/bin/muffin
39   cp $startdir/src/muffin/muffin.desktop $pkgdir/usr/share/muffin
40   sleep 1
41   chmod 777 $pkgdir/usr/bin/muffin