diff options
Diffstat (limited to 'xdmcp/libxdmcp_0.1.1.oe')
-rw-r--r-- | xdmcp/libxdmcp_0.1.1.oe | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/xdmcp/libxdmcp_0.1.1.oe b/xdmcp/libxdmcp_0.1.1.oe index e69de29bb2..b467fb241f 100644 --- a/xdmcp/libxdmcp_0.1.1.oe +++ b/xdmcp/libxdmcp_0.1.1.oe @@ -0,0 +1,19 @@ +SECTION = "libs" +PRIORITY = "optional" +MAINTAINER = "Greg Gilbert <greg@treke.net>" +DEPENDS = "virtual/libc xproto" +PROVIDES = "xdmcp" +DESCRIPTION = "X Display Manager Control Protocol library." +S = "${WORKDIR}/libXdmcp-${PV}" + +SRC_URI = "http://freedesktop.org/~xlibs/release/libXdmcp-${PV}.tar.bz2" + +inherit autotools pkgconfig + +do_stage() { + oe_runmake install prefix=${STAGING_DIR} \ + bindir=${STAGING_BINDIR} \ + includedir=${STAGING_INCDIR} \ + libdir=${STAGING_LIBDIR} \ + datadir=${STAGING_DATADIR} +} |