mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
Please see https://git.yoctoproject.org/poky/commit/?id=4dd321f8b83afecd962393101b2a6861275b5265 for what changes are needed, and sed commands that can be used to make them en masse. I've verified that bitbake -c patch world works with these, but did not run a world build; the majority of recipes shouldn't need further fixups, but if there are some that still fall out, they can be fixed in followups. Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
19 lines
636 B
BlitzBasic
19 lines
636 B
BlitzBasic
SUMMARY = "Open implementation of the DVB Common Scrambling Algorithm, encrypt and decrypt "
|
|
SECTION = "libs/multimedia"
|
|
LICENSE = "GPL-2.0-or-later"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
|
|
|
|
SRCREV = "bc6c0b164a87ce05e9925785cc6fb3f54c02b026"
|
|
|
|
SRC_URI = "git://code.videolan.org/videolan/libdvbcsa.git;protocol=https;branch=master \
|
|
file://libdvbcsa.pc \
|
|
"
|
|
|
|
|
|
inherit autotools lib_package pkgconfig
|
|
|
|
do_install:append() {
|
|
install -D -m 0644 ${S}/src/dvbcsa/dvbcsa.h ${D}${includedir}/dvbcsa/dvbcsa.h
|
|
install -D -m 0644 ${UNPACKDIR}/libdvbcsa.pc ${D}${libdir}/pkgconfig/libdvbcsa.pc
|
|
}
|