You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
244 B
12 lines
244 B
10 years ago
|
# Example of a satellite file, which is just a shell script with a cool name.
|
||
|
|
||
|
name=hello
|
||
|
version=2.9
|
||
|
|
||
|
dlextract "http://ftp.gnu.org/pub/gnu/$name/$name-$version.tar.gz"
|
||
|
|
||
|
cd "$name-$version"
|
||
|
./configure
|
||
|
make
|
||
|
make DESTDIR="$dir_install" install
|