blob: 641688a881996dfc98c46c969216c8cbb1a08f67 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
inherit native
DEPENDS = "zlib-native"
INHIBIT_NATIVE_STAGE_INSTALL = "1"
do_stage_append() {
cp libpng.pc libpng12.pc
install -m 644 png.h ${STAGING_INCDIR}/png.h
install -m 644 pngconf.h ${STAGING_INCDIR}/pngconf.h
oe_libinstall -so libpng12 ${STAGING_LIBDIR}/
ln -sf libpng12.so ${STAGING_LIBDIR}/libpng.so
}
|