diff options
Diffstat (limited to 'recipes/gtk-theme-torturer')
-rw-r--r-- | recipes/gtk-theme-torturer/gtk-theme-torturer_git.bb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/recipes/gtk-theme-torturer/gtk-theme-torturer_git.bb b/recipes/gtk-theme-torturer/gtk-theme-torturer_git.bb new file mode 100644 index 0000000000..adcdf2ed2e --- /dev/null +++ b/recipes/gtk-theme-torturer/gtk-theme-torturer_git.bb @@ -0,0 +1,19 @@ +DESCRIPTION = "Gtk+ Theme Benchmark Program" +DEPENDS = "gtk+" +HOMEPAGE = "http://wiki.laptop.org/go/GTK_for_OLPC" +SECTION = "devel" +LICENSE = "GPL" + +PV = "0.0.0+git${SRCDATE}" + +SRC_URI = "git://dev.laptop.org/projects/soc-gtk/;protocol=git" +S = "${WORKDIR}/git/gtk-theme-torturer" + +CFLAGS += "-Wl,-rpath-link,${STAGING_LIBDIR}" + +do_install() { + install -d ${D}${bindir} + install -m 0755 torturer ${D}${bindir} +} + + |