diff options
Diffstat (limited to 'meta/recipes-devtools/swabber')
-rw-r--r-- | meta/recipes-devtools/swabber/swabber-native_git.bb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/meta/recipes-devtools/swabber/swabber-native_git.bb b/meta/recipes-devtools/swabber/swabber-native_git.bb new file mode 100644 index 0000000000..c7133153ac --- /dev/null +++ b/meta/recipes-devtools/swabber/swabber-native_git.bb @@ -0,0 +1,21 @@ +DESCRIPTION = "Swabber is a tool that can help with understanding a program's use of host files." +HOMEPAGE = "http://git.pokylinux.org/cgit/cgit.cgi/swabber" +LICENSE = "GPLv2" +LIC_FILES_CHKSUM = "file://COPYING;md5=393a5ca445f6965873eca0259a17f833" + +PV = "0.0+git${SRCPV}" +PR = "r0" + +S = "${WORKDIR}/git" + +SRC_URI = "git://git.pokylinux.org/swabber;protocol=git" + +inherit native + +do_configure () { + : +} + +do_install() { + oe_runmake 'DESTDIR=${D}' install +} |