mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
* when enabled it will try to download http://linuxtv.org/hg/dvb-apps/archive/tip.tar.bz2 from do_configure (bypassing PREMIRROR and bitbake fetcher), but what's worse even when it fetches it, it fails in do_install, because dvb-scan directory is empty, reading the script called from configure 3.3-r0/git/support/getmuxlist, I don't know how it could work before, because it first moves files to dvb-scan directory and then removes them all one by one. Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
32 lines
844 B
BlitzBasic
32 lines
844 B
BlitzBasic
SUMMARY = "Tvheadend TV streaming server"
|
|
HOMEPAGE = "https://www.lonelycoder.com/redmine/projects/tvheadend"
|
|
|
|
DEPENDS = "avahi zlib openssl python-native"
|
|
|
|
LICENSE = "GPLv3+"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=9eef91148a9b14ec7f9df333daebc746"
|
|
|
|
SRC_URI = "git://github.com/tvheadend/tvheadend.git \
|
|
file://0001-Move-tvheadend-specific-LD-CFLAGS-into-a-helper-vari.patch \
|
|
"
|
|
SRCREV = "a420c83a0e0d2c31c2c15d0fec6fedc3f5a36dfe"
|
|
PV = "3.3"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
do_configure() {
|
|
./configure --prefix=${prefix} \
|
|
--libdir=${libdir} \
|
|
--bindir=${bindir} \
|
|
--datadir=${datadir} \
|
|
--arch=${TARGET_ARCH} \
|
|
--disable-dvbscan \
|
|
--disable-bundle
|
|
}
|
|
|
|
do_install() {
|
|
oe_runmake install DESTDIR=${D}
|
|
}
|
|
|
|
FILES_${PN} += "${datadir}/${BPN}"
|