diff options
Diffstat (limited to 'recipes/units/units_1.80.bb')
-rw-r--r-- | recipes/units/units_1.80.bb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/recipes/units/units_1.80.bb b/recipes/units/units_1.80.bb new file mode 100644 index 0000000000..0f94f80638 --- /dev/null +++ b/recipes/units/units_1.80.bb @@ -0,0 +1,18 @@ +DESCRIPTION = "GNU units converts between different systems of units." +DEPENDS = "readline" +SECTION = "console/utils" +PR = "r1" + +LICENSE = "GPL" +SRC_URI = "${GNU_MIRROR}/units/units-${PV}.tar.gz \ + file://units.c.patch;patch=1 \ + file://makefile.patch;patch=1" + +inherit autotools + +do_install_append() { + install -d ${D}${datadir} + install -m 0655 units.dat ${D}${datadir} +} + +FILES_${PN} += "${datadir}/units.dat" |