diff options
Diffstat (limited to 'meta-moblin/packages/mojito/mojito_git.bb')
-rw-r--r-- | meta-moblin/packages/mojito/mojito_git.bb | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/meta-moblin/packages/mojito/mojito_git.bb b/meta-moblin/packages/mojito/mojito_git.bb new file mode 100644 index 0000000000..d8ac5c3fbe --- /dev/null +++ b/meta-moblin/packages/mojito/mojito_git.bb | |||
@@ -0,0 +1,26 @@ | |||
1 | |||
2 | SRC_URI = "git://git.moblin.org/${PN}.git;protocol=git" | ||
3 | PV = "0.0+git${SRCREV}" | ||
4 | PR = "r1" | ||
5 | |||
6 | DEPENDS = "libsoup-2.4 gconf-dbus librest glib-2.0 twitter-glib sqlite3" | ||
7 | |||
8 | S = "${WORKDIR}/git" | ||
9 | |||
10 | inherit autotools_stage | ||
11 | |||
12 | FILES_${PN}-dbg += "${libdir}/mojito/sources/.debug/*" | ||
13 | |||
14 | pkg_postinst_${PN} () { | ||
15 | #!/bin/sh -e | ||
16 | if [ "x$D" != "x" ]; then | ||
17 | exit 1 | ||
18 | fi | ||
19 | |||
20 | . ${sysconfdir}/init.d/functions | ||
21 | |||
22 | gconftool-2 --config-source=xml::$D${sysconfdir}/gconf/gconf.xml.defaults --direct --type string -s /apps/mojito/sources/flickr/user 34402200@N07 | ||
23 | gconftool-2 --config-source=xml::$D${sysconfdir}/gconf/gconf.xml.default --direct --type string -s /apps/mojito/sources/twitter/user ross@linux.intel.com | ||
24 | gconftool-2 --config-source=xml::$D${sysconfdir}/gconf/gconf.xml.defaults --direct --type string -s /apps/mojito/sources/twitter/password password | ||
25 | |||
26 | } | ||