mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
This is the result of automated script (0.9.1) conversion: oe-core/scripts/contrib/convert-overrides.py . converting the metadata to use ":" as the override character instead of "_". Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
30 lines
1.0 KiB
BlitzBasic
30 lines
1.0 KiB
BlitzBasic
SUMMARY = "GTK plugin for stylus based systems"
|
|
SECTION = "libs"
|
|
DEPENDS = "gtk+"
|
|
LICENSE = "LGPL-2.0+"
|
|
LIC_FILES_CHKSUM = "file://tap.c;beginline=1;endline=20;md5=71756eeb144e9eeb177c69aa672b1635"
|
|
PR = "r4"
|
|
|
|
inherit features_check autotools pkgconfig
|
|
|
|
REQUIRED_DISTRO_FEATURES = "x11"
|
|
|
|
SRC_URI = "http://burtonini.com/temp/${BP}.tar.gz \
|
|
file://gtkstylus.sh"
|
|
SRC_URI[md5sum] = "fa1c82cd9fd2fafd7ff10d78eb5781c5"
|
|
SRC_URI[sha256sum] = "383e0a22a537f653b8d41688277560f95678a042967198085ec7caa1a5cc2f4c"
|
|
|
|
do_install:append() {
|
|
install -d ${D}/${sysconfdir}/X11/Xsession.d
|
|
install -m 755 ${WORKDIR}/gtkstylus.sh ${D}/${sysconfdir}/X11/Xsession.d/45gtkstylus
|
|
}
|
|
|
|
# Horrible but rpm falls over if you use '*'
|
|
GTKVER = "2.10.0"
|
|
|
|
FILES:${PN} = "${sysconfdir} \
|
|
${libdir}/gtk-2.0/${GTKVER}/modules/libgtkstylus.so.*"
|
|
FILES:${PN}-dbg += "${libdir}/gtk-2.0/${GTKVER}/modules/.debug"
|
|
FILES:${PN}-dev += "${libdir}/gtk-2.0/${GTKVER}/modules/libgtkstylus.so"
|
|
FILES:${PN}-staticdev += "${libdir}/gtk-2.0/${GTKVER}/modules/libgtkstylus.*a"
|