blob: e78936a6c409ab8668b28871c9411777067b3888 (
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
25
26
27
28
|
################################################################################
#
# subversion
#
################################################################################
SUBVERSION_VERSION = 1.7.18
SUBVERSION_SITE = http://archive.apache.org/dist/subversion
SUBVERSION_LICENSE = Apache-2.0
SUBVERSION_LICENSE_FILES = LICENSE
SUBVERSION_DEPENDENCIES = apr apr-util expat neon zlib
SUBVERSION_CONF_OPT = \
--with-expat=$(STAGING_DIR)/usr/include:$(STAGING_DIR)/usr/lib: \
--with-apr=$(STAGING_DIR)/usr \
--with-apr-util=$(STAGING_DIR)/usr \
--with-zlib=$(STAGING_DIR)/usr \
--with-neon=$(STAGING_DIR)/usr \
--without-gssapi \
--without-serf \
--without-apxs \
--without-berkeyley-db \
--without-sasl \
--without-gnome-keyring \
--without-ssl \
--without-libmagic
$(eval $(autotools-package))
|