blob: 4af771e15379fe1d341f1d8c84bfc5cad877017d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
}
|