mirror of
https://git.yoctoproject.org/poky
synced 2026-02-10 02:33:02 +01:00
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@530 311d38ba-8fff-0310-9ca6-ca027cbcb966
20 lines
529 B
BlitzBasic
Executable File
20 lines
529 B
BlitzBasic
Executable File
LICENSE = "LGPL"
|
|
SECTION = "x11"
|
|
DEPENDS = "glib-2.0 gtk+ libglade eds-dbus"
|
|
MAINTAINER = "Chris Lord <chris@openedhand.com>"
|
|
DESCRIPTION = "Dates is a calendar application."
|
|
|
|
SRC_URI = "http://projects.o-hand.com/sources/dates/dates-0.1.tar.gz"
|
|
|
|
inherit autotools pkgconfig gtk-icon-cache
|
|
|
|
# EXTRA_OECONF = "--disable-debug"
|
|
|
|
FILES_${PN} += "${datadir}/pixmaps/dates.png"
|
|
|
|
do_install_append () {
|
|
install -d ${D}/${datadir}/pixmaps
|
|
install -m 0644 ${D}/${datadir}/icons/hicolor/48x48/apps/dates.png ${D}/${datadir}/pixmaps/
|
|
}
|
|
|