|
0
|
1 <?xml version="1.0"?>
|
|
|
2 <tool_dependency>
|
|
|
3 <package name="gnu_coreutils" version="8.19">
|
|
|
4 <install version="1.0">
|
|
|
5 <actions>
|
|
|
6 <!-- Why download from my server? because the Official coreutil repository
|
|
|
7 only has '.xz' files (LZMA compression) for recent versions, Python's "tarfile" can't handle them,
|
|
|
8 and most servers don't have a recent enough 'tar' program that can extract them.
|
|
|
9 This file is a bzip2 repackged version of http://ftp.gnu.org/gnu/coreutils/coreutils-8.19.tar.xz -->
|
|
|
10 <action type="download_by_url">http://cancan.cshl.edu/labmembers/gordon/files/coreutils-8.19.tar.bz2</action>
|
|
|
11 <action type="shell_command">./configure --prefix=$INSTALL_DIR</action>
|
|
|
12 <action type="shell_command">make</action>
|
|
|
13 <action type="shell_command">make install</action>
|
|
|
14 <action type="set_environment">
|
|
|
15 <environment_variable name="PATH" action="prepend_to">$INSTALL_DIR/bin</environment_variable>
|
|
|
16 </action>
|
|
|
17 </actions>
|
|
|
18 </install>
|
|
|
19 <readme>
|
|
|
20 Compiling GNU coreutils requires a C compiler.
|
|
|
21 </readme>
|
|
|
22 </package>
|
|
|
23
|
|
|
24 <package name="gnu_awk" version="4.0.1">
|
|
|
25 <install version="1.0">
|
|
|
26 <actions>
|
|
|
27 <action type="download_by_url">http://ftp.gnu.org/gnu/gawk/gawk-4.0.1.tar.gz</action>
|
|
|
28 <action type="shell_command">./configure --prefix=$INSTALL_DIR</action>
|
|
|
29 <action type="shell_command">make</action>
|
|
|
30 <action type="shell_command">make install</action>
|
|
|
31 <action type="set_environment">
|
|
|
32 <environment_variable name="PATH" action="prepend_to">$INSTALL_DIR/bin</environment_variable>
|
|
|
33 </action>
|
|
|
34 </actions>
|
|
|
35 </install>
|
|
|
36 <readme>
|
|
|
37 Compiling GNU awk requires a C compiler.
|
|
|
38 </readme>
|
|
|
39 </package>
|
|
|
40
|
|
|
41 <package name="gnu_sed" version="4.2-sandbox">
|
|
|
42 <install version="1.0">
|
|
|
43 <actions>
|
|
|
44 <!-- This is a patched version of GNU sed, which supports the "sandbox" option.
|
|
|
45 It is equivalent GNU sed 4.2 (ftp://ftp.gnu.org/gnu/sed/sed-4.2.tar.gz)
|
|
|
46 with the following patch:
|
|
|
47 http://cancan.cshl.edu/labmembers/gordon/files/sed-4.2-sandbox.patch
|
|
|
48 -->
|
|
|
49 <action type="download_by_url">http://cancan.cshl.edu/labmembers/gordon/files/sed-4.2-sandbox.tar.gz</action>
|
|
|
50 <action type="shell_command">./configure --prefix=$INSTALL_DIR</action>
|
|
|
51 <action type="shell_command">make</action>
|
|
|
52 <action type="shell_command">make install</action>
|
|
|
53 <action type="set_environment">
|
|
|
54 <environment_variable name="PATH" action="prepend_to">$INSTALL_DIR/bin</environment_variable>
|
|
|
55 </action>
|
|
|
56 </actions>
|
|
|
57 </install>
|
|
|
58 <readme>
|
|
|
59 Compiling GNU sed requires a C compiler.
|
|
|
60 </readme>
|
|
|
61 </package>
|
|
|
62
|
|
|
63 </tool_dependency>
|