1 # Contributor: Philipp Geyer <nistur@gmail.com>
5 pkgdesc="Olive is a set of add-on libraries for the Mono core that bring some of the new .NET APIs to Mono"
8 makedepends=('subversion' 'pkgconfig')
9 url="http://www.mono-project.com/Olive"
13 _svntrunk=svn://anonsvn.mono-project.com/source/trunk/olive
18 if [ -d ${_svnmod}/.svn ]; then
19 (cd ${_svnmod} && svn up -r ${pkgver})
21 svn co ${_svntrunk} --config-dir ./ ${_svnmod}
23 msg "SVN checkout done or server timeout"
24 msg "Starting make..."
26 rm -rf ${startdir}/src/${_svnmod}-build
27 cp -r ${_svnmod} ${_svnmod}-build
28 cd ${startdir}/src/${_svnmod}-build
30 ./configure --prefix=/usr --with-moonlight
32 make DESTDIR=${startdir}/pkg/ install || return 1
33 rm -rf ${startdir}/src/${_svnmod}-build