diff options
Diffstat (limited to 'recipes/freesmartphone')
-rw-r--r-- | recipes/freesmartphone/fso-term_git.bb | 4 | ||||
-rw-r--r-- | recipes/freesmartphone/libfsotransport_git.bb | 3 | ||||
-rw-r--r-- | recipes/freesmartphone/libgsm0710mux_git.bb | 4 | ||||
-rw-r--r-- | recipes/freesmartphone/vala-dbus-binding-tool-native_git.bb | 17 |
4 files changed, 24 insertions, 4 deletions
diff --git a/recipes/freesmartphone/fso-term_git.bb b/recipes/freesmartphone/fso-term_git.bb index e3f674d7cb..22e74d3795 100644 --- a/recipes/freesmartphone/fso-term_git.bb +++ b/recipes/freesmartphone/fso-term_git.bb @@ -1,8 +1,8 @@ -DESCRIPTION = "Term is a versatile muxer-aware terminal program" +DESCRIPTION = "FSO Term is a versatile muxer-aware terminal program" HOMEPAGE = "http://www.freesmartphone.org/index.php/Implementations/fso-term" AUTHOR = "Michael 'Mickey' Lauer <mlauer@vanille-media.de>" SECTION = "console/network" -DEPENDS = "dbus dbus-glib readline libfsoframework" +DEPENDS = "dbus dbus-glib readline libfsotransport" LICENSE = "GPL" PV = "0.0.0.0+gitr${SRCREV}" PR = "r0" diff --git a/recipes/freesmartphone/libfsotransport_git.bb b/recipes/freesmartphone/libfsotransport_git.bb new file mode 100644 index 0000000000..c46721eca6 --- /dev/null +++ b/recipes/freesmartphone/libfsotransport_git.bb @@ -0,0 +1,3 @@ +require cornucopia.inc +DESCRIPTION = "freesmartphone.org transport library" + diff --git a/recipes/freesmartphone/libgsm0710mux_git.bb b/recipes/freesmartphone/libgsm0710mux_git.bb index 46c7204844..108c6d5672 100644 --- a/recipes/freesmartphone/libgsm0710mux_git.bb +++ b/recipes/freesmartphone/libgsm0710mux_git.bb @@ -3,9 +3,9 @@ HOMEPAGE = "http://www.freesmartphone.org/index.php/Implementations/libgsm0710mu AUTHOR = "Michael 'Mickey' Lauer <mlauer@vanille-media.de>" LICENSE = "GPL" SECTION = "devel" -DEPENDS = "libgsm0710 vala-native glib-2.0" +DEPENDS = "libgsm0710 vala-native glib-2.0 libfsotransport" PV = "0.3.4+gitr${SRCREV}" -PR = "r0" +PR = "r1" SRC_URI = "\ ${FREESMARTPHONE_GIT}/libgsm0710mux;protocol=git;branch=master \ diff --git a/recipes/freesmartphone/vala-dbus-binding-tool-native_git.bb b/recipes/freesmartphone/vala-dbus-binding-tool-native_git.bb new file mode 100644 index 0000000000..3076f9501c --- /dev/null +++ b/recipes/freesmartphone/vala-dbus-binding-tool-native_git.bb @@ -0,0 +1,17 @@ +DESCRIPTION = "Vala DBus Binding Tool" +SECTION = "console" +LICENSE = "GPLv2" +DEPENDS = "vala-native" +PV = "0.1.0+gitr${SRCREV}" +PR = "r0" + +SRC_URI = "${FREESMARTPHONE_GIT}/vala-dbus-binding-tool.git;protocol=git;branch=master" +S = "${WORKDIR}/git" + +inherit autotools native + +do_stage() { + install -d ${STAGING_BINDIR_NATIVE} + install -m 0755 src/vala-dbus-binding-tool ${STAGING_BINDIR_NATIVE}/ +} + |