summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 663a0f0e802438fd04a74c28730590d9da99cf8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# This is an example PKGBUILD file. Use this as a start to creating your own,
# and remove these comments. For more information, see 'man PKGBUILD'.
# NOTE: Please fill out the license field for your package! If it is unknown,
# then please put 'unknown'.

# See http://wiki.archlinux.org/index.php/Arch_CVS_&_SVN_PKGBUILD_guidelines
# for more information on packaging from SVN sources.

# Contributor: Rene Reigel <stormtrooperofdeath@gmx.net>
pkgname=aesthe-svn
pkgver=164
pkgrel=1
pkgdesc="3d modeller"
arch=('i686')
url="http://sourceforge.net/projects/aesthe/"
license=('unknown')
groups=()
depends=('lua' 'sdl')
makedepends=('subversion')
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
source=(Makefile Makefile2)
noextract=()
md5sums=('6d79159605fd7081c3ab844954238977'
         '2bb71fb2103af5a039ae8c6f1a6e33a0')



_svntrunk=https://aesthe.svn.sourceforge.net/svnroot/aesthe 
_svnmod=aesthe

build() {
  cd "$srcdir"

  if [ -d $_svnmod/.svn ]; then
    (cd $_svnmod && svn up -r $pkgver)
  else
    svn co $_svntrunk --config-dir ./ -r $pkgver $_svnmod
  fi

  msg "SVN checkout done or server timeout"
  msg "Starting make..."

  rm -rf "$srcdir/$_svnmod-build"
  cp -r "$srcdir/$_svnmod" "$srcdir/$_svnmod-build"
  cd "$srcdir/$_svnmod-build/aesthe"
  cp ../../../Makefile ./
  cp ../../../Makefile2 ./src/Makefile
  export PKGDIR=$pkgdir
  #
  # BUILD
  #
  #./autogen.sh
  #./configure --prefix=/usr
  make all || return 1
  make install
}