opt/subversion/Pkgfile

32 lines
750 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: A version control system (CVS replacement)
# URL: http://subversion.apache.org
# Maintainer: UNMAINTAINED
# Depends on: serf
2006-02-23 16:26:10 +01:00
name=subversion
version=1.9.10
release=1
source=(https://www.apache.org/dist/$name/$name-$version.tar.bz2
apr-1.7.patch)
2006-02-23 16:26:10 +01:00
build() {
cd $name-$version
2006-11-15 08:55:52 +01:00
patch -p1 -i $SRC/apr-1.7.patch
./autogen.sh
./configure --prefix=/usr \
--with-apr=/usr \
--with-apr-util=/usr \
--without-swig \
--without-apxs \
--disable-mod-activation \
--disable-nls
2006-02-23 16:26:10 +01:00
make
make -j1 DESTDIR=$PKG install
# info pages seem to get generated when makeinfo is available
rm -rf $PKG/usr/info
2006-02-23 16:26:10 +01:00
}