Skip to content

Commit

Permalink
new app subversion
Browse files Browse the repository at this point in the history
  • Loading branch information
thorko committed Jun 14, 2017
1 parent 360966f commit 61a039a
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions apps/subversion.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
[config]
# mandatory: the name of the app
app="subversion"
# mandatory
version="1.8.17"
# build_path: this is the path where all the source gets compiled
build_path="/tmp/subversion"

# where the app will be installed
# path will always be extended by the version /usr/local/bind/$version
# mandatory
install_path="/usr/local/subversion/%version"
# the url where to download the source
url="http://artfiles.org/apache.org/subversion/subversion-%version.tar.gz"

# the archive type of the source
# types: tar, tgz, gz, Z, zip, bz2, tbz, lzma
# mandatory
archive_type="tgz"

# if the build_script option is used the "build_opts", "make" and "install" will not be used, but can still be used at macros in build_script
# in the build script you can use any macro (%version, %app, %url, %build_opts)
# the script has to be executable and should be a bash script
# specify the full path to it
#build_script="/tmp/test.sh"

# prebuild command
# this command will be run before build_opts are run
#prebuild_command="patch -p < somepatch"

# the configure options
# add the full command to run
build_opts="./configure --with-apxs=/usr/local/apache2/current/bin/apxs --prefix=%install_path"
# the make command to use
make="make"
# the install command to use
install="make install"
# post build actions
# this command will be run after make install was successful
postbuild_command="cp /tmp/subversion/subversion/mod_authz_svn/.libs/mod_authz_svn.so /usr/local/apache2/current/modules/ && cp /tmp/subversion/subversion/mod_dav_svn/.libs/mod_dav_svn.so /usr/local/apache2/current/modules/"
# keep build directory
# the build directory and logs will be kept
# even when the build was successful
keep_build=false

0 comments on commit 61a039a

Please sign in to comment.