From ed568d63b9f06d4a5e96e0f189b8e354f971be09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Sun, 25 Jun 2017 21:35:58 +0200 Subject: [PATCH] premake3: initial add 3.7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Andreas Müller --- recipes-support/premake/premake3_3.7.bb | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 recipes-support/premake/premake3_3.7.bb diff --git a/recipes-support/premake/premake3_3.7.bb b/recipes-support/premake/premake3_3.7.bb new file mode 100644 index 00000000..4ced47f5 --- /dev/null +++ b/recipes-support/premake/premake3_3.7.bb @@ -0,0 +1,22 @@ +SUMMARY = "A simple build configuration and project generation tool using lua" +LICENSE = "GPLv2" +LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=fdafc691aa5fb7f8e2a9e9521fef771b" +HOMEPAGE = "http://premake.github.io/" + +DEPENDS = "lua-native" + +SRC_URI = " \ + http://downloads.sourceforge.net/project/premake/Premake/${PV}/premake-src-${PV}.zip \ +" +SRC_URI[md5sum] = "8d30dc5bbc52aad81abb1509c1dd7d8f" +SRC_URI[sha256sum] = "b59841a519e75d5b6566848a2c5be2f91455bf0cc6ae4d688fcbd4c40db934d5" +S = "${WORKDIR}/Premake-${PV}" + +BBCLASSEXTEND = "native" + +do_install() { + install -d ${D}${bindir} + install -m 755 ${S}/bin/premake ${D}${bindir} +} + +