From b48bc59ee46175d78f01b60f114bc411ec90b0f8 Mon Sep 17 00:00:00 2001 From: Ricardo Martins Date: Mon, 28 Sep 2015 16:09:19 +0100 Subject: [PATCH] gperf: added package. --- rules/gperf/host.bash | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 rules/gperf/host.bash diff --git a/rules/gperf/host.bash b/rules/gperf/host.bash new file mode 100644 index 0000000..17fe0da --- /dev/null +++ b/rules/gperf/host.bash @@ -0,0 +1,34 @@ +version=\ +( + '3.0.4' +) +url=\ +( + "http://ftp.gnu.org/pub/gnu/gperf/gperf-$version.tar.gz" +) + +md5=\ +( + 'c1f1db32fb6598d6a93e6e88796a8632' +) + +maintainer=\ +( + 'Ricardo Martins ' +) + +configure() +{ + "../gperf-$version/configure" \ + --prefix="$cfg_dir_toolchain" +} + +build() +{ + $cmd_make +} + +host_install() +{ + $cmd_make install +}