milis/talimatname/genel/subversion/talimat

29 lines
733 B
Plaintext
Raw Normal View History

2016-04-02 19:00:30 +02:00
# 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
2016-07-30 16:25:15 +02:00
# Depends on: apr serf cyrus-sasl
2016-02-24 01:27:23 +01:00
name=subversion
version=1.9.3
2016-04-02 19:00:30 +02:00
release=1
source=(http://www.apache.org/dist/$name/$name-$version.tar.bz2)
2016-02-24 01:27:23 +01:00
build() {
2016-04-02 19:00:30 +02:00
cd $name-$version
./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
2016-02-24 01:27:23 +01:00
2016-04-02 19:00:30 +02:00
# info pages seem to get generated when makeinfo is available
rm -rf $PKG/usr/info
2016-02-24 01:27:23 +01:00
}