summaryrefslogtreecommitdiffstats
path: root/subversion/Pkgfile
blob: 652ee7fbaa4ee8701388e8cc137402a7f16eaa03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Description: Version control System (Remplacement de cvs)
# URL: http://subversion.tigris.org
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: apr, neon, expat, sqlite3, cyrus-sasl, libproxy
# Run on: apr,neon,expat,sqlite3,cyrus-sasl

name=subversion
version=1.7.5
release=1
source=(http://mirrors.ircam.fr/pub/apache/$name/$name-$version.tar.bz2)

build() {
	unset MAKEFLAGS
	cd $name-$version
#	sed -i 's/@SVN_APR_INCLUDES@/& @CPPFLAGS@/' subversion/bindings/swig/perl/native/Makefile.PL.in
	./configure --prefix=/usr \
		--with-apr=/usr \
		--with-apr-util=/usr\
		--with-neon=/usr \
		--disable-neon-version-check
	make
	make DESTDIR=$PKG install
}