diff options
author | Steve Sakoman <steve@sakoman.com> | 2009-08-05 15:34:38 -0700 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2009-08-08 11:20:05 +0200 |
commit | 853caf13db02d98a9d19f016b2f105bb96d3954b (patch) | |
tree | c7838cd353d7c50d2fe373c31bc5e566c0323d33 /recipes/gtksourceview/gtksourceview2_2.7.3.bb | |
parent | 6e4f48a748a6c6ed73e68db307eaca5cec7ebc7c (diff) |
gtksourceview: add 2.7.3
Diffstat (limited to 'recipes/gtksourceview/gtksourceview2_2.7.3.bb')
-rw-r--r-- | recipes/gtksourceview/gtksourceview2_2.7.3.bb | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/recipes/gtksourceview/gtksourceview2_2.7.3.bb b/recipes/gtksourceview/gtksourceview2_2.7.3.bb new file mode 100644 index 0000000000..474b317678 --- /dev/null +++ b/recipes/gtksourceview/gtksourceview2_2.7.3.bb @@ -0,0 +1,24 @@ +DESCRIPTION = "Portable C library for multiline text editing" +HOMEPAGE = "http://projects.gnome.org/gtksourceview/" +LICENSE = "LGPL" +DEPENDS = "gtk+ libgnomeprint" +PR = "r0" +PNAME = "gtksourceview" + +S = "${WORKDIR}/${PNAME}-${PV}" + +inherit gnome pkgconfig + +# overrule SRC_URI from gnome.conf +SRC_URI = "${GNOME_MIRROR}/${PNAME}/${@gnome_verdir("${PV}")}/${PNAME}-${PV}.tar.bz2" + +do_configure_prepend() { + sed -i -e s:docs::g ${S}/Makefile.am +} + +do_stage() { + autotools_stage_all +} + +FILES_${PN} += " ${datadir}/gtksourceview-2.0" + |