generic-poky/meta/packages/pong-clock/pong-clock_1.0.bb
Richard Purdie e5379100d5 pong-clock: Add
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2119 311d38ba-8fff-0310-9ca6-ca027cbcb966
2007-07-05 21:38:42 +00:00

15 lines
326 B
BlitzBasic

DESCRIPTION = "A clock combined with a game of pong"
LICENCE = "GPLv2"
SRC_URI = "file://pong-clock-no-flicker.c"
S = "${WORKDIR}"
do_compile () {
${CC} -o pong-clock pong-clock-no-flicker.c `pkg-config --cflags --libs x11 xau xdmcp`
}
do_install () {
install -d ${D}${bindir}
install -m 0755 pong-clock ${D}${bindir}
}