opt/mod_svn/Pkgfile

26 lines
732 B
Plaintext
Raw Normal View History

2008-08-04 18:48:13 +02:00
# Description: Apache module for the Subversion version control system
2011-11-12 10:35:44 +01:00
# URL: http://subversion.apache.org
2011-02-02 13:44:37 +01:00
# Maintainer: Juergen Daubert, jue at crux dot nu
2008-08-04 18:48:13 +02:00
# Depends on: subversion apache
name=mod_svn
2012-10-15 19:26:34 +02:00
version=1.7.7
2008-08-04 18:48:13 +02:00
release=1
2011-11-12 10:35:44 +01:00
source=(http://www.apache.org/dist/subversion/subversion-$version.tar.bz2)
2008-08-04 18:48:13 +02:00
build() {
cd subversion-$version
./configure --prefix=/usr \
--mandir=/usr/man \
2008-12-24 12:04:19 +01:00
--with-{apr,apr-util,neon}=/usr \
2008-08-31 10:48:39 +02:00
--disable-neon-version-check \
2008-08-04 18:48:13 +02:00
--disable-mod-activation \
2008-08-31 10:48:39 +02:00
--without-swig \
--disable-nls \
2008-08-04 18:48:13 +02:00
--with-apxs=/usr/sbin/apxs
make apache-mod
make DESTDIR=$PKG install-mods-shared
}