mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-12-15 14:56:43 +01:00
Changes: - rename SUMMARY with length > 80 to DESCRIPTION - rename DESCRIPTION with length < 80 to (non present tag) SUMMARY - drop final point character at the end of SUMMARY string - remove trailing whitespace of SUMMARY line Note: don't bump PR Signed-off-by: Matthieu Crapet <Matthieu.Crapet@ingenico.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
40 lines
1.3 KiB
BlitzBasic
40 lines
1.3 KiB
BlitzBasic
SUMMARY = "Lightweight media scanner meant to be used in not-so-powerful devices"
|
|
AUTHOR = "ProFUSION"
|
|
HOMEPAGE = "http://lms.garage.maemo.org/"
|
|
SECTION = "libs/multimedia"
|
|
LICENSE = "LGPLv2.1+"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=a6f89e2100d9b6cdffcea4f398e37343"
|
|
DEPENDS = "sqlite3 flac virtual/libiconv"
|
|
|
|
PR = "r2"
|
|
|
|
SRC_URI = "http://git.profusion.mobi/cgit.cgi/lightmediascanner.git/snapshot/release_${PV}.tar.bz2 \
|
|
"
|
|
SRC_URI[md5sum] = "f423376a70f8f321af69b12563b176fe"
|
|
SRC_URI[sha256sum] = "302a7f6cc355467cd20332f4e02c8b87ba6c0c7a6818a6a987e007aace19b41e"
|
|
|
|
S = "${WORKDIR}/release_${PV}"
|
|
|
|
PACKAGECONFIG ??= ""
|
|
PACKAGECONFIG[ogg] = "--enable-ogg,--disable-ogg,libvorbis"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
do_install_append() {
|
|
install -d ${D}/${bindir}/
|
|
install -m 755 ${S}/src/bin/.libs/test ${D}/${bindir}/test-lms
|
|
}
|
|
|
|
PACKAGES =+ "${PN}-test"
|
|
|
|
FILES_${PN}-test = "${bindir}/test-lms"
|
|
|
|
FILES_${PN}-dbg += "${libdir}/${PN}/plugins/.debug"
|
|
FILES_${PN}-staticdev += "${libdir}/${PN}/plugins/*.a"
|
|
|
|
# otherwise fails with ERROR: could not add conversion charset 'UTF-16BE': Invalid argument
|
|
RDEPENDS_${PN}-test_append_libc-glibc = " glibc-gconv-utf-16"
|
|
|
|
# png.so jpeg.so id3.so are provided also by imlib2-loaders
|
|
PRIVATE_LIBS_${PN} = "video-dummy.so png.so jpeg.so id3.so pls.so audio-dummy.so rm.so ogg.so dummy.so m3u.so flac.so asf.so"
|