mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-14 13:39:15 +03:00
13 lines
212 B
Bash
13 lines
212 B
Bash
![]() |
#! /bin/sh
|
||
|
|
||
|
export PATH=/bin:/usr/bin
|
||
|
|
||
|
top=`pwd`
|
||
|
tar xvfz $src || exit 1
|
||
|
cd openssl-* || exit 1
|
||
|
./config --prefix=$top || exit 1
|
||
|
make || exit 1
|
||
|
make install || exit 1
|
||
|
cd $top || exit 1
|
||
|
rm -rf openssl-* || exit 1
|