Add gnome-keyring

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1599 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Ross Burton 2007-05-04 15:23:58 +00:00
parent 8b9d8e6399
commit 4951b77ec9
1 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,21 @@
LICENSE = "GPL"
SECTION = "x11/gnome"
SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/${PN}/0.4/${PN}-${PV}.tar.bz2"
inherit autotools pkgconfig
DEPENDS = "gtk+"
EXTRA_OECONF = "--disable-gtk-doc"
HEADERS = " \
gnome-keyring.h \
"
do_stage() {
install -d ${STAGING_INCDIR}/gnome-keyring-1
for i in ${HEADERS}; do
install -m 0644 $i ${STAGING_INCDIR}/gnome-keyring-1/$i
done
oe_libinstall -so libgnome-keyring ${STAGING_LIBDIR}
}