summaryrefslogtreecommitdiff
path: root/community/emotion-svn/PKGBUILD
blob: 4f39fda911a2388d00e5741dd412ebb7927b7243 (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
# $Id: PKGBUILD 70361 2012-05-05 07:40:39Z rvanharen $
# Maintainer: Ronald van Haren <ronald.archlinux.org>

pkgname=emotion-svn
pkgver=72440
pkgrel=1
pkgdesc="Library to easily integrate media playback into EFL applications"
arch=('i686' 'x86_64')
groups=('e17-libs-svn' 'e17-svn')
url="http://www.enlightenment.org"
license=('BSD')
depends=('gstreamer0.10' 'edje-svn' 'eeze-svn')
makedepends=('subversion')
conflicts=('emotion')
provides=('emotion')
options=(!libtool)
source=()
md5sums=()

_svntrunk="http://svn.enlightenment.org/svn/e/trunk/emotion"
_svnmod="emotion"

build() {
   cd $srcdir

msg "Connecting to $_svntrunk SVN server...."
  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..."

  cp -r $_svnmod $_svnmod-build
  cd $_svnmod-build

  ./autogen.sh --prefix=/usr
  make
}

package(){
  cd $_svnmod-build
  make DESTDIR=$pkgdir install
  
  # install license files
  install -Dm644 $srcdir/$_svnmod-build/COPYING \
  	$pkgdir/usr/share/licenses/$pkgname/COPYING
  
  rm -r $srcdir/$_svnmod-build

}