mid-kid
10 years ago
12 changed files with 82 additions and 21 deletions
@ -0,0 +1,12 @@ |
|||
name=check |
|||
version=0.9.14 |
|||
|
|||
dlextract "http://sourceforge.net/projects/$name/files/$name/$version/$name-$version.tar.gz" \ |
|||
"38263d115d784c17aa3b959ce94be8b8" |
|||
|
|||
cd "$name-$version" |
|||
|
|||
PKG_CONFIG= ./configure --prefix=/tools |
|||
make; make DESTDIR="$dir_install" install |
|||
|
|||
# vim:set tabstop=4 shiftwidth=4 syntax=sh et: |
@ -0,0 +1,12 @@ |
|||
name=dejagnu |
|||
version=1.5.1 |
|||
|
|||
dlextract "http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz" \ |
|||
"8386e04e362345f50ad169f052f4c4ab" |
|||
|
|||
cd "$name-$version" |
|||
|
|||
./configure --prefix=/tools |
|||
make; make DESTDIR="$dir_install" install |
|||
|
|||
# vim:set tabstop=4 shiftwidth=4 syntax=sh et: |
@ -0,0 +1,13 @@ |
|||
name=expect |
|||
version=5.45 |
|||
|
|||
dlextract "http://sourceforge.net/projects/$name/files/Expect/$version/$name$version.tar.gz" \ |
|||
"44e1a4f4c877e9ddc5a542dfa7ecc92b" |
|||
|
|||
cd "$name$version" |
|||
|
|||
sed -i 's:/usr/local/bin:/bin:' configure |
|||
./configure --prefix=/tools --with-tcl=/tools/lib --with-tclinclude=/tools/include |
|||
make; make DESTDIR="$dir_install" SCRIPTS="" install |
|||
|
|||
# vim:set tabstop=4 shiftwidth=4 syntax=sh et: |
@ -0,0 +1,15 @@ |
|||
name=tcl |
|||
majver=8.6 |
|||
version=$majver.3 |
|||
|
|||
dlextract "http://prdownloads.sourceforge.net/$name/$name$version-src.tar.gz" \ |
|||
"db382feca91754b7f93da16dc4cdad1f" |
|||
|
|||
cd "$name$version/unix" |
|||
|
|||
./configure --prefix=/tools |
|||
make; make DESTDIR="$dir_install" install install-private-headers |
|||
chmod u+w "$dir_install/tools/lib/libtcl$majver.so" |
|||
ln -s tclsh$majver "$dir_install/tools/bin/tclsh" |
|||
|
|||
# vim:set tabstop=4 shiftwidth=4 syntax=sh et: |
Loading…
Reference in new issue