mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 16:27:27 +00:00
51ec241860
Signed-off-by: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org> Signed-off-by: Eric Bénard <eric@eukrea.com>
31 lines
1.1 KiB
BlitzBasic
31 lines
1.1 KiB
BlitzBasic
DESCRIPTION = "Devilspie2 is a window matching utility, allowing the user to perform scripted actions on windows as they are created"
|
|
HOMEPAGE = "http://www.gusnan.se/devilspie2"
|
|
LICENSE = "GPLv3"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=00aefaa50aad75c21367df66102d542c \
|
|
file://GPL3.txt;md5=d32239bcb673463ab874e80d47fae504"
|
|
|
|
DEPENDS = "gtk+ glib-2.0 libwnck lua5.1 virtual/libx11"
|
|
|
|
SRC_URI = " \
|
|
http://www.gusnan.se/devilspie2/download/devilspie2_${PV}-src.tar.gz \
|
|
file://default.lua \
|
|
file://devilspie2.desktop \
|
|
"
|
|
SRC_URI[md5sum] = "90b354662659e2922bd051fdde3b0971"
|
|
SRC_URI[sha256sum] = "9c94fa13ed8c0bf6914fdda513e21a4bd527821b97a53d8004168a8d465a646a"
|
|
|
|
inherit pkgconfig
|
|
|
|
do_compile() {
|
|
export GTK2=1
|
|
oe_runmake CC="${CC}" CPPFLAGS="${CPPFLAGS}" LDFLAGS=" -ldl -lm ${LDFLAGS}"
|
|
}
|
|
|
|
do_install() {
|
|
oe_runmake DESTDIR="${D}" PREFIX="${prefix}" install
|
|
install -d ${D}/${sysconfdir}/devilspie2
|
|
install -m 644 ${WORKDIR}/default.lua ${D}/${sysconfdir}/devilspie2
|
|
install -d ${D}/${sysconfdir}/xdg/autostart
|
|
install -m 644 ${WORKDIR}/devilspie2.desktop ${D}/${sysconfdir}/xdg/autostart
|
|
}
|