mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-12 18:29:04 +00:00
12 lines
218 B
Bash
12 lines
218 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
NAME=w3c-libwww-5.4.0
|
||
|
FILE="${NAME}.tgz"
|
||
|
URL="http://www.w3.org/Library/Distribution/${FILE}"
|
||
|
|
||
|
wget $URL
|
||
|
tar -xzvf ${FILE}
|
||
|
(cd "$NAME" && ./configure --prefix=$HOME/protobuf && make && make install)
|