diff options
Diffstat (limited to 'recipes/podget/podget_0.5.8.bb')
-rw-r--r-- | recipes/podget/podget_0.5.8.bb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/recipes/podget/podget_0.5.8.bb b/recipes/podget/podget_0.5.8.bb new file mode 100644 index 0000000000..4af771e153 --- /dev/null +++ b/recipes/podget/podget_0.5.8.bb @@ -0,0 +1,16 @@ +DESCRIPTION = "A simple podcast aggregator." +HOMEPAGE = "http://podget.sourceforge.net/" +PRIORITY = "optional" +LICENSE = "GPL" + +RDEPENDS = "bash sed wget libiconv" + +SRC_URI = "${SOURCEFORGE_MIRROR}/podget/podget_${PV}.tar.gz \ + file://busybox_df.patch;patch=1" + +S = "${WORKDIR}/podget" + +do_install () { + install -d ${D}/usr/bin + install -m 0755 ${WORKDIR}/podget/podget ${D}/usr/bin +} |