blob: 729343fb4464cf6702f865cfa6d106de290308b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
DESCRIPTION = "Pixbuf performance test"
LICENSE = "Public domain"
DEPENDS = "gtk+"
SRC_URI = "http://amelang.net/composite_pixbuf.c"
S = "${WORKDIR}"
do_compile() {
${CC} ${CFLAGS} composite_pixbuf.c -o composite_pixbuf \
`pkg-config --cflags gdk-2.0` `pkg-config --libs gdk-2.0` `pkg-config --libs x11` `pkg-config --libs pango` \
-lxcb -lXext -lXinerama -lXrandr -lXcursor -lXfixes -lpangoft2-1.0 -lz -lexpat -lxcb-xlib -lXau -lXdmcp
}
do_install() {
install -d ${D}${bindir}
install -m 755 composite_pixbuf ${D}${bindir}
}
|