mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2025-02-07 02:37:17 +02:00
15 lines
179 B
Bash
15 lines
179 B
Bash
![]() |
#! /bin/sh
|
||
|
|
||
|
export PATH=/bin:/usr/bin
|
||
|
|
||
|
export LDFLAGS=-s
|
||
|
|
||
|
top=`pwd`
|
||
|
tar xvfz $src
|
||
|
cd subversion-*
|
||
|
./configure --prefix=$top --with-ssl
|
||
|
make
|
||
|
make install
|
||
|
cd ..
|
||
|
rm -rf subversion-*
|