blob: 474b317678f76313e758f2f9272741d7ce5fbe4e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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"
|