updated on Wed Jan 18 20:10:41 UTC 2012
[aur-mirror.git] / wii-backup-fusion-hg / PKGBUILD
blob7fd77966c08d6388b545ceece611fc524bedfe9c
1 # This is an example PKGBUILD file. Use this as a start to creating your own,
2 # and remove these comments. For more information, see 'man PKGBUILD'.
3 # NOTE: Please fill out the license field for your package! If it is unknown,
4 # then please put 'unknown'.
6 # See http://wiki.archlinux.org/index.php/VCS_PKGBUILD_Guidelines
7 # for more information on packaging from Mercurial(hg) sources.
9 # Maintainer: Your Name <youremail@domain.com>
10 pkgname=wii-backup-fusion-hg
11 pkgver=289
12 pkgrel=1
13 pkgdesc="graphical frontend to wimm's iso tools"
14 arch=(i686 x86_64)
15 url="http://wiibafu.codeplex.com/"
16 license=('GPL')
17 depends=("qt" "wiimms-iso-tools")
18 makedepends=('mercurial')
19 provides=()
20 conflicts=()
21 replaces=()
22 backup=()
23 options=()
24 install=
25 source=()
26 noextract=()
27 md5sums=() #generate with 'makepkg -g'
29 _hgroot="https://hg01.codeplex.com/wiibafu"
30 _hgrepo="$pkgname"
32 build() {
33   cd "$srcdir"
34   msg "Connecting to Mercurial server...."
36   if [ -d $_hgrepo ] ; then
37     cd $_hgrepo
38     hg pull -u
39     msg "The local files are updated."
40   else
41     hg clone $_hgroot $_hgrepo
42   fi
44   msg "Mercurial checkout done or server timeout"
45   msg "Starting make..."
47   rm -rf "$srcdir/$_hgrepo-build"
48   cp -r "$srcdir/$_hgrepo" "$srcdir/$_hgrepo-build"
49   cd "$srcdir/$_hgrepo-build"
51   #
52   # BUILD HERE
53   #
55   qmake 
56   make
59 package() {
60   cd "$srcdir/$_hgrepo-build"
61   mkdir -p $pkgdir/usr/bin
62   install -m 755 bin/WiiBaFu $pkgdir/usr/bin
63