mid-kid
10 years ago
7 changed files with 77 additions and 13 deletions
@ -1,3 +1,4 @@ |
|||||
# This is a hacky satellite. Please refrain of making more like this if possible. |
# This is a hacky satellite. Please refrain of making more like this if possible. |
||||
msg "Installing astronaut" |
msg "Installing astronaut" |
||||
|
|
||||
install -Dm755 "$(command -v "$0")" "$dir_install/tools/bin/astronaut" |
install -Dm755 "$(command -v "$0")" "$dir_install/tools/bin/astronaut" |
||||
|
@ -0,0 +1,14 @@ |
|||||
|
name=perl |
||||
|
version=5.20.1 |
||||
|
|
||||
|
dlextract "http://www.cpan.org/src/5.0/$name-$version.tar.gz" \ |
||||
|
"7a195abb7d6769f751e90c7d30dcf2e0" |
||||
|
|
||||
|
cd "$name-$version" |
||||
|
|
||||
|
sh Configure -des -Dprefix=/tools -Dlibs=-lm |
||||
|
make |
||||
|
|
||||
|
cp perl cpan/podlators/pod2man "$dir_install/tools/bin" |
||||
|
mkdir -p "$dir_install/tools/lib/perl5" |
||||
|
cp -r lib "$dir_install/tools/lib/perl5/$version" |
@ -0,0 +1,10 @@ |
|||||
|
name=stow |
||||
|
version=2.2.0 |
||||
|
|
||||
|
dlextract "http://ftp.gnu.org/gnu/$name/$name-$version.tar.bz2" \ |
||||
|
"5bb56592eff9aaf9dfb6c975b3004240" |
||||
|
|
||||
|
cd "$name-$version" |
||||
|
|
||||
|
./configure --prefix=/tools |
||||
|
make DESTDIR="$dir_install" install-exec-am install-pmDATA install-dist_pmstowDATA |
Loading…
Reference in new issue