Installasi Subversion 1.10 di Centos 6.x 64 bit

Silahkan download paket-paket yang diperlukan

mkdir /installer
cd /installer/

Install SQLite

wget https://sqlite.org/2018/sqlite-autoconf-3230100.tar.gz
tar xvzf sqlite-autoconf-3230100.tar.gz
cd sqllite-autoconf
./configure --prefix=/usr     \
            --disable-static  \
            --enable-fts5     \
            CFLAGS="-g -O2                    \
            -DSQLITE_ENABLE_FTS4=1            \
            -DSQLITE_ENABLE_COLUMN_METADATA=1 \
            -DSQLITE_ENABLE_UNLOCK_NOTIFY=1   \
            -DSQLITE_ENABLE_DBSTAT_VTAB=1     \
            -DSQLITE_SECURE_DELETE=1          \
            -DSQLITE_ENABLE_FTS3_TOKENIZER=1" &&
make

Install Subversion

wget http://www-us.apache.org/dist/subversion/subversion-1.10.0.tar.gz
tar xvzf subversion-1.10.0.tar.gz
cd subversion-1.10.0
./configure --prefix=/usr             \
            --disable-static          \
            --with-apache-libexecdir  \
            --with-lz4=internal       \
            --with-utf8proc=internal &&
make

Test SVN

svn help
svn --version