updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / stereozoom2 / PKGBUILD
blob292dbf245d289c3be00e7e0fd04f7cdeba8b64f1
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 # Contributor: Your Name <muna@stcomp.cz>
7 pkgname=stereozoom2
8 pkgver=4
9 pkgrel=1
10 pkgdesc="stereo pictures viewer"
11 arch=(i686)
12 url="http://stereozoom2.sourceforge.net"
13 license=('GPL')
14 groups=()
15 depends=('devil' 'allegro')
16 makedepends=('subversion' 'autoconf')
17 provides=('stereozoom2')
18 conflicts=()
19 replaces=()
20 backup=()
21 options=()
22 install=
23 source=()
24 noextract=()
25 md5sums=() #generate with 'makepkg -g'a
27 _svntrunk=https://stereozoom2.svn.sourceforge.net/svnroot/stereozoom2/stereozoom2/trunk
28 _svnmod=stereozoom2
30 build() 
32   cd $startdir/src
33   if [ -d $_svnmod/.svn ]; then
34     (cd $_svnmod && svn -r $pkgver up)
35     else
36     svn co -r $pkgver $_svntrunk $_svnmod 
37   fi
39   msg "SVN checkout done or server timeout"
40   msg "Starting make..."
42   cp -r $_svnmod $_svnmod-build
43   cd $_svnmod-build
45 #  ./autogen.sh
46   autoreconf -isf
47   
48   ./configure --prefix=/usr --disable-gui # gui requires wxwidgets and doesn't comply with the KISS philosophy :-)
49   make || return 1
50   make DESTDIR=$startdir/pkg/ install
52   rm -rf $startdir/src/$_svnmod-build
55 # vim:set ts=2 sw=2 et: