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')
10 url="http://www.mono-project.com/Olive"
14 _svntrunk=svn://anonsvn.mono-project.com/source/trunk/olive
19 if [ -d ${_svnmod}/.svn ]; then
20 (cd ${_svnmod} && svn up -r ${pkgver})
22 svn co ${_svntrunk} --config-dir ./ ${_svnmod}
24 msg "SVN checkout done or server timeout"
25 msg "Starting make..."
27 rm -rf ${startdir}/src/${_svnmod}-build
28 cp -r ${_svnmod} ${_svnmod}-build
29 cd ${startdir}/src/${_svnmod}-build
31 ./configure --prefix=/usr --with-moonlight
33 make DESTDIR=${startdir}/pkg/ install || return 1
34 rm -rf ${startdir}/src/${_svnmod}-build