blob: a1f9fb0f390d40748baf3ea70020364e24ced1dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
DESCRIPTION = "fmtools - programs for Video for Linux radio cards"
LICENSE = "GPL"
PR = "r0"
SRC_URI = "http://www.stanford.edu/~blp/fmtools/fmtools-1.0.2.tar.gz \
file://makefile.patch;patch=1"
inherit autotools
do_install() {
install -d ${D}${bindir}
install -m 0755 ${S}/fm ${D}${bindir}/fm
install -m 0755 ${S}/fmscan ${D}${bindir}/fmscan
}
|