mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-10 09:19:01 +00:00
11 lines
218 B
Bash
11 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)
|