diff options
author | Elena Grandi <elena.valhalla@gmail.com> | 2009-07-01 12:57:12 +0200 |
---|---|---|
committer | Elena Grandi <elena.valhalla@gmail.com> | 2009-07-01 12:57:12 +0200 |
commit | 645418b10be153f65ef42e0e2158f89d2618536f (patch) | |
tree | 23e0d365d0cd049043a218484cae3acd7263251d | |
parent | a2ba9341af9cbb19593f120b52dee81788f03b9c (diff) |
python-pygtksourceview 2.6.0: new recipe
python bindings for gtksourceview
-rw-r--r-- | conf/checksums.ini | 4 | ||||
-rw-r--r-- | recipes/python/python-pygtksourceview_2.6.0.bb | 18 |
2 files changed, 22 insertions, 0 deletions
diff --git a/conf/checksums.ini b/conf/checksums.ini index 6fc3c42211..53bbf64ddb 100644 --- a/conf/checksums.ini +++ b/conf/checksums.ini @@ -20290,6 +20290,10 @@ sha256=1cd8e9bb0a011317862aec90a03e562bebbbf7fcf865a8ff12992548cdda746d md5=c69c2e5e86a8f21a5773df20e265fc3a sha256=dee1ec46a43bf624f1ff796903bd2d49e65c1cc8396385f46bf1489817bd6e60 +[ftp://ftp.gnome.org/pub/gnome/sources/pygtksourceview/2.6/pygtksourceview-2.6.0.tar.bz2] +md5=5587a1865bd5c785c6f34095c57cc96b +sha256=77acb735fee997a1638c79256b9dcf592566d066b54a72eb4321909f98f66178 + [http://downloads.sourceforge.net/pyid3lib/pyid3lib-0.5.1.tar.bz2] md5=49818a591430e08057c27a11e4c40aef sha256=2a7bdd52c24ed0e70e4a2d82c697214c4ab5a70f94ea9e7934df15ca202d1169 diff --git a/recipes/python/python-pygtksourceview_2.6.0.bb b/recipes/python/python-pygtksourceview_2.6.0.bb new file mode 100644 index 0000000000..0c2b335d1e --- /dev/null +++ b/recipes/python/python-pygtksourceview_2.6.0.bb @@ -0,0 +1,18 @@ +DESCRIPTION = "Python gtksourceview Bindings" +SECTION = "devel/python" +HOMEPAGE = "http://projects.gnome.org/gtksourceview/pygtksourceview.html" +PRIORITY = "optional" +DEPENDS = "gtksourceview python-pygtk" +SRCNAME = "pygtksourceview" +LICENSE = "LGPL" +PR = "r0" + +MAJ_VER = "${@bb.data.getVar('PV',d,1).split('.')[0]}.${@bb.data.getVar('PV',d,1).split('.')[1]}" +SRC_URI = "ftp://ftp.gnome.org/pub/gnome/sources/pygtksourceview/${MAJ_VER}/${SRCNAME}-${PV}.tar.bz2" + +S = "${WORKDIR}/${SRCNAME}-${PV}" + +inherit autotools pkgconfig distutils-base + +EXTRA_OECONF += "--with-python-includes=${STAGING_INCDIR}/../" + |