blob: 0f441c6930cab6cdcdd93d962f2e4c028766d347 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
SUMMARY = "tail for multiple files in parallel"
DESCRIPTION = "\
MultiTail allows you to monitor logfiles and command output in multiple \
windows in a terminal, colorize, filter and merge \
"
HOMEPAGE = "https://vanheusden.com/multitail/screenshots.html"
BUGTRACKER = "https://github.com/folkertvanheusden/multitail/issues"
SECTION = "console/utils"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://LICENSE;md5=e4d13123d158ecd203b5b9ffe50a0c76"
SRC_URI = "git://github.com/folkertvanheusden/multitail.git;protocol=https;branch=master;tag=${PV}"
SRCREV = "247e7ff727d9a8bed410f1bbf86f247c059546d9"
DEPENDS = "ncurses"
inherit cmake
# Work around the implicit declaration of function 'waddnwstr' in mt.c:712
CFLAGS += "-Wno-error=implicit-function-declaration"
EXTRA_OECMAKE += "\
-DCOMPILER_WARNINGS_ARE_ERRORS=OFF \
-DUSE_CPPCHECK=OFF \
"
PACKAGECONFIG ?= "utf8"
PACKAGECONFIG[utf8] = "-DUTF8_SUPPORT=ON,-DUTF8_SUPPORT=OFF"
do_install:append() {
mv -v ${D}${prefix}/etc ${D}${sysconfdir}
mv -v ${D}${sysconfdir}/multitail.conf.new ${D}${sysconfdir}/multitail.conf
# These are example files to illustrate input conversion
mv -v ${D}${sysconfdir}/multitail/conversion-scripts ${D}${docdir}/multitail-${PV}
}
|