28 lines
703 B
Plaintext
28 lines
703 B
Plaintext
# Description: Bir sürüm kontrol sistemi (CVS değiştirme)
|
||
# URL: http://subversion.apache.org
|
||
# Packager: milisarge@gmail.com
|
||
# Depends on: apr serf cyrus-sasl
|
||
|
||
name=subversion
|
||
version=1.9.3
|
||
release=1
|
||
source=(http://www.apache.org/dist/$name/$name-$version.tar.bz2)
|
||
|
||
build() {
|
||
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
|
||
|
||
# Makeinfo mevcut olduğunda bilgi sayfaları oluşturuluyor gibi görünüyor
|
||
rm -rf $PKG/usr/info
|
||
}
|