diff options
author | Michael 'Mickey' Lauer <mickey@vanille-media.de> | 2008-12-06 16:48:41 +0100 |
---|---|---|
committer | Michael 'Mickey' Lauer <mickey@vanille-media.de> | 2008-12-06 16:48:41 +0100 |
commit | 39330dba959eb6307bb9489b4f89b2d5057e7158 (patch) | |
tree | 5412a1fe0089df292774b319be81ce1d9c840639 /packages | |
parent | 5c54311aa585c9db1335d9666df2527a1e852df9 (diff) |
toscoterm: make it compile for the target and add SRCREV entry
Diffstat (limited to 'packages')
-rw-r--r-- | packages/toscoterm/toscoterm_git.bb | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/packages/toscoterm/toscoterm_git.bb b/packages/toscoterm/toscoterm_git.bb index a8e5fb8c2f..fd9181d0a0 100644 --- a/packages/toscoterm/toscoterm_git.bb +++ b/packages/toscoterm/toscoterm_git.bb @@ -3,11 +3,15 @@ SECTION = "x11/applications" LICENSE = "GPLv3" DEPENDS = "vte" HOMEPAGE = "https://projetos.ossystems.com.br/projects/show/toscoterm" -PV = "0.0+git${SRCDATE}" -PR = "r1" +PV = "0.0+gitr${SRCREV}" +PR = "r2" SRC_URI = "git://projetos.ossystems.com.br/git/toscoterm.git;protocol=git" - S = "${WORKDIR}/git" -inherit autotools +do_compile() { + oe_runmake \ + CC="${CC}" \ + CFLAGS="${CFLAGS} `pkg-config --cflags gtk-2.0` `pkg-config --cflags vte`" \ + LDFLAGS="${LDFLAGS} `pkg-config --libs gtk+-2.0` `pkg-config --libs vte`" +} |