subversion

This commit is contained in:
root 2016-04-02 20:00:30 +03:00
parent c705949ae4
commit c11c1666a3
1 changed files with 21 additions and 13 deletions

View File

@ -1,20 +1,28 @@
# Description: Version control System (Remplacement de cvs)
# URL: http://subversion.tigris.org
# Packager: pierre at nutyx dot org
# Depends on: apr apr-util neon expat sqlite db cyrus-sasl serf
# Description: A version control system (CVS replacement)
# URL: http://subversion.apache.org
# Maintainer: Jose V Beneyto, sepen at crux dot nu
# Packager: milisarge@gmail.com
# Depends on: apr serf expat sqlite3
name=subversion
version=1.9.3
release=2
source=(http://archive.apache.org/dist/$name/$name-$version.tar.bz2)
release=1
source=(http://www.apache.org/dist/$name/$name-$version.tar.bz2)
build() {
cd $name-$version
cd $name-$version
./configure --prefix=/usr \
--with-serf \
--disable-static
make
make DESTDIR=$PKG install
./configure --prefix=/usr \
--with-apr=/usr \
--with-apr-util=/usr \
--without-swig \
--without-apxs \
--disable-mod-activation \
--disable-nls
make
make -j1 DESTDIR=$PKG install
# info pages seem to get generated when makeinfo is available
rm -rf $PKG/usr/info
}