updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / liveusb-creator-git / PKGBUILD
blob878bae4341626ab50694d50fa80ba467e8232862
1 # Maintainer: Fernando Munoz <f[at]beford.net>
2 # Contributor: Gen2ly <dirk.r.gently[at]gmail.com>
4 pkgname=liveusb-creator-git
5 pkgver=20111113
6 pkgrel=1
7 pkgdesc="Cross-platform tool for easily installing live operating systems on to USB flash drives."
8 arch=('i686' 'x86_64')
9 url="https://fedorahosted.org/liveusb-creator/"
10 license=('GPL2')
11 makedepends=('git')
12 depends=('dosfstools' 'isomd5sum' 'pyparted' 'python2' 'python2-pyqt' 'p7zip' 'syslinux' 'mtools' 'urlgrabber')
13 source=()
15 _gitroot="git://git.fedorahosted.org/liveusb-creator.git"
16 _gitname="liveusb-creator"
18 build() {
19   cd ${srcdir}
20   msg "Connecting to git.fedorahosted.org GIT server...."
22   if [ -d ${srcdir}/$_gitname ] ; then
23     cd $_gitname && git pull origin
24     msg "The local files are updated."
25     else
26     git clone $_gitroot
27   fi
29   msg 'Patching for python2'
30   
31   sed -i -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" $(find ${srcdir} -name '*.py')
33   sed -i -e "s|#![ ]*/usr/bin/python|#!/usr/bin/python2|" ${srcdir}/$_gitname/liveusb-creator
34         
35   cd ${srcdir}/$_gitname/
37   python2 ./setup.py build
38   python2 ./setup.py install --root=${pkgdir}