diff options
author | Ross Burton <ross@openedhand.com> | 2007-05-04 15:23:58 +0000 |
---|---|---|
committer | Ross Burton <ross@openedhand.com> | 2007-05-04 15:23:58 +0000 |
commit | 4951b77ec979cfd2966c4e7f6e75d6f6f3c49a54 (patch) | |
tree | 2fc79b53c6582a305c202ca9959fdc63309fc58e /meta | |
parent | 8b9d8e6399e74c3a38f2de86dcf20f68cc4a84d2 (diff) | |
download | poky-4951b77ec979cfd2966c4e7f6e75d6f6f3c49a54.tar.gz |
Add gnome-keyring
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1599 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta')
-rw-r--r-- | meta/packages/gnome/gnome-keyring_0.4.4.bb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/meta/packages/gnome/gnome-keyring_0.4.4.bb b/meta/packages/gnome/gnome-keyring_0.4.4.bb new file mode 100644 index 0000000000..d0efaaf608 --- /dev/null +++ b/meta/packages/gnome/gnome-keyring_0.4.4.bb | |||
@@ -0,0 +1,21 @@ | |||
1 | LICENSE = "GPL" | ||
2 | SECTION = "x11/gnome" | ||
3 | SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/${PN}/0.4/${PN}-${PV}.tar.bz2" | ||
4 | |||
5 | inherit autotools pkgconfig | ||
6 | |||
7 | DEPENDS = "gtk+" | ||
8 | |||
9 | EXTRA_OECONF = "--disable-gtk-doc" | ||
10 | |||
11 | HEADERS = " \ | ||
12 | gnome-keyring.h \ | ||
13 | " | ||
14 | |||
15 | do_stage() { | ||
16 | install -d ${STAGING_INCDIR}/gnome-keyring-1 | ||
17 | for i in ${HEADERS}; do | ||
18 | install -m 0644 $i ${STAGING_INCDIR}/gnome-keyring-1/$i | ||
19 | done | ||
20 | oe_libinstall -so libgnome-keyring ${STAGING_LIBDIR} | ||
21 | } | ||