diff --git a/rules/libtool/host.bash b/rules/libtool/host.bash new file mode 100644 index 0000000..90727d6 --- /dev/null +++ b/rules/libtool/host.bash @@ -0,0 +1,35 @@ +version=\ +( + '2.4.6' +) + +url=\ +( + "http://ftpmirror.gnu.org/libtool/libtool-$version.tar.gz" +) + +md5=\ +( + 'addf44b646ddb4e3919805aa88fa7c5e' +) + +maintainer=\ +( + "Ricardo Martins " +) + +configure() +{ + "../libtool-$version/configure" \ + --prefix="$cfg_dir_toolchain" +} + +build() +{ + $cmd_make +} + +host_install() +{ + $cmd_make install +}