diff options
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/pidgin/msn-pecan_git.bb | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/recipes/pidgin/msn-pecan_git.bb b/recipes/pidgin/msn-pecan_git.bb new file mode 100644 index 0000000000..3e724f01ec --- /dev/null +++ b/recipes/pidgin/msn-pecan_git.bb @@ -0,0 +1,23 @@ +DESCRIPTION="Alternative MSN protocol plug-in for pidgin" +HOMEPAGE="http://code.google.com/p/msn-pecan/" +SECTION = "x11/network" +LICENSE="GPL-2" +RDEPENDS="pidgin" +DEPENDS="pidgin" +PV="0.0.1+gitr${SRCPV}" +PR="r0" + +inherit pkgconfig + +SRC_URI="git://github.com/felipec/msn-pecan.git;protocol=http" +S="${WORKDIR}/git" + +do_compile() { + oe_runmake "DESTDIR=${D}" +} +do_install() { + oe_runmake "DESTDIR=${D}" install +} + +FILES_${PN} = "${libdir}/purple-2/*.so" +FILES_${PN}-dbg = "${libdir}/purple-2/.debug/" |