mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-27 00:06:16 +02:00
14 lines
179 B
Bash
Executable file
14 lines
179 B
Bash
Executable file
#! /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-*
|