blob: 880d4ed66643867d0ea7c066f3d799da50816703 [file] [log] [blame]
Brad Bishop6e60e8b2018-02-01 10:27:11 -05001SUMMARY = "Matchbox lightweight window manager"
2HOMEPAGE = "http://matchbox-project.org"
3BUGTRACKER = "http://bugzilla.yoctoproject.org/"
4
Andrew Geissler7e0e3c02022-02-25 20:34:39 +00005LICENSE = "GPL-2.0-or-later"
Andrew Geisslerfc113ea2023-03-31 09:59:46 -05006LIC_FILES_CHKSUM = "file://src/wm.h;endline=21;md5=ce20617ac10f26045cc57b8d977ab552 \
7 file://src/main.c;endline=21;md5=508f280276140250ce483e0a44f7a9ec \
8 file://src/wm.c;endline=21;md5=f54584fb0d48cfc2e6876e0f0e272e6c"
Brad Bishop6e60e8b2018-02-01 10:27:11 -05009
10SECTION = "x11/wm"
11DEPENDS = "libmatchbox virtual/libx11 libxext libxrender startup-notification expat gconf libxcursor libxfixes"
12
Andrew Geisslerfc113ea2023-03-31 09:59:46 -050013SRCREV = "ce8c1053270d960a7235ab5c3435f707541810a4"
Andrew Geissler028142b2023-05-05 11:29:21 -050014SRC_URI = "git://git.yoctoproject.org/matchbox-window-manager;branch=master;protocol=https \
Brad Bishop6e60e8b2018-02-01 10:27:11 -050015 file://kbdconfig"
16
17S = "${WORKDIR}/git"
18
Brad Bishop6dbb3162019-11-25 09:41:34 -050019inherit autotools pkgconfig features_check
Brad Bishop6e60e8b2018-02-01 10:27:11 -050020# depends on virtual/libx11
21REQUIRED_DISTRO_FEATURES = "x11"
22
Patrick Williams213cb262021-08-07 19:21:33 -050023FILES:${PN} = "${bindir}/* \
Brad Bishop6e60e8b2018-02-01 10:27:11 -050024 ${datadir}/matchbox \
25 ${sysconfdir}/matchbox \
26 ${datadir}/themes/blondie/matchbox \
27 ${datadir}/themes/Default/matchbox \
28 ${datadir}/themes/MBOpus/matchbox"
29
30EXTRA_OECONF = " --enable-startup-notification \
31 --disable-xrm \
32 --enable-expat \
33 --with-expat-lib=${STAGING_LIBDIR} \
34 --with-expat-includes=${STAGING_INCDIR}"
35
Patrick Williams213cb262021-08-07 19:21:33 -050036do_install:prepend() {
Brad Bishop6e60e8b2018-02-01 10:27:11 -050037 install ${WORKDIR}/kbdconfig ${S}/data/kbdconfig
38}