diff options
author | Henning Heinold <heinold@inf.fu-berlin.de> | 2008-09-05 21:34:52 +0000 |
---|---|---|
committer | Henning Heinold <heinold@inf.fu-berlin.de> | 2008-09-05 21:34:52 +0000 |
commit | 07994e63b927880cf9e20c30da34fc0f84ab65b5 (patch) | |
tree | 5693cd3af35d213ff9b60a49b8ee434cf5d47d3f /packages/libxcomp/libxcomp_3.2.0-7.bb | |
parent | 627c3f58f437396c37777e587ccee1131b5cb278 (diff) |
libxcomp: inital release
* sa_restorer is taken from latest debian unstable package
* first step for nx-client support in openembedded
Diffstat (limited to 'packages/libxcomp/libxcomp_3.2.0-7.bb')
-rw-r--r-- | packages/libxcomp/libxcomp_3.2.0-7.bb | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/packages/libxcomp/libxcomp_3.2.0-7.bb b/packages/libxcomp/libxcomp_3.2.0-7.bb new file mode 100644 index 0000000000..84ab8d2396 --- /dev/null +++ b/packages/libxcomp/libxcomp_3.2.0-7.bb @@ -0,0 +1,28 @@ +DESCRIPTION = "Compression library for x-protocol from nomachine" +HOMEPAGE = "http://www.nomachine.com/" +SECTION = "libs" +LICENSE = "GPL" +PR = "r0" + +DEPENDS = "virtual/libx11 zlib jpeg libpng" + +SRC_URI = "http://64.34.161.181/download/3.2.0/sources/nxcomp-${PV}.tar.gz \ + file://sa_restorer.patch;patch=1 \ + " + + +inherit autotools + +S = "${WORKDIR}/nxcomp" + +do_install () { + oe_libinstall -a -so libXcomp ${D}${libdir} + install -d ${D}${includedir}/ + install -m 0644 NX.h ${D}${includedir}/ +} + + +do_stage () { + oe_libinstall -a -so libXcomp ${STAGING_LIBDIR} + install -m 0644 NX.h ${STAGING_INCDIR}/ +} |