blob: fd2f93b7aa5293e90bc2c574ebd4be5cb5b444ae (
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
|
# $Id: PKGBUILD 76288 2012-09-15 10:12:52Z rvanharen $
# Maintainer: Ronald van Haren <ronald.archlinux.org>
# Contributor: Ronald van Haren <ronald.archlinux.org>
pkgname=e_dbus-svn
pkgver=76526
pkgrel=1
pkgdesc="dbus abstraction layer for e17"
arch=('i686' 'x86_64')
groups=('e17-libs-svn' 'e17-svn')
url="http://www.enlightenment.org"
license=('BSD')
depends=('ecore-svn' 'dbus-core' )
makedepends=('svn')
conflicts=('e_dbus')
provides=('e_dbus')
replaces=('e_dbus-cvs')
options=('!libtool')
source=()
md5sums=()
_svntrunk="http://svn.enlightenment.org/svn/e/trunk/e_dbus"
_svnmod="e_dbus"
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 $srcdir/$_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
}
|