blob: 7fe1f4c34f72979e87f595cb9e2ff8fdd1b77e79 (
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
|
# $Id: PKGBUILD 66568 2012-02-26 10:34:45Z rvanharen $
# Maintainer: Ronald van Haren <ronald.archlinux.org>
# Contributor: Ronald van Haren <ronald.archlinux.org>
pkgname=ecore-svn
pkgver=68447
pkgrel=1
pkgdesc="Ecore is an abstraction layer for e17"
arch=('i686' 'x86_64')
groups=('e17-libs-svn' 'e17-svn')
url="http://www.enlightenment.org"
license=('BSD')
depends=('libxp' 'curl' 'libxss' 'evas-svn' 'libxtst' 'libxcomposite'
'libxrandr' 'libxinerama' 'libxcursor' 'eina-svn')
makedepends=('subversion')
conflicts=('ecore')
provides=('ecore')
options=('!libtool' '!emptydirs')
source=()
md5sums=()
_svntrunk="http://svn.enlightenment.org/svn/e/trunk/ecore"
_svnmod="ecore"
build() {
cd $srcdir
if [ $NOEXTRACT -eq 0 ]; then
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..."
fi
cp -r $_svnmod $_svnmod-build
cd $_svnmod-build
./autogen.sh --prefix=/usr --enable-ecore-evas-opengl-x11 --enable-glib \
--enable-inotify --enable-openssl --disable-gnutls --enable-ecore-con
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 $startdir/src/$_svnmod-build
}
|