Re: [OE-core] [PATCH] zlib: build and package minigzip

2020-06-17 Thread Sergio Prado
Hi Richard, > > do_install() { > > oe_runmake DESTDIR=${D} install > > + > > + install -d ${D}${sbindir} > > + install -m 0755 ${B}/minigzip ${D}${sbindir} > > + install -m 0755 ${B}/minigzipsh ${D}${sbindir} > > + install -m 0755 ${B}/minigzip64 ${D}${sbindir} > > } > > >

Re: [OE-core] [PATCH] zlib: build and package minigzip

2020-06-15 Thread Richard Purdie
On Fri, 2020-06-12 at 17:45 -0300, Sergio Prado wrote: > minigzip is a minimal implementation of the gzip utility that > simulates > gzip using the zlib compression library. > > Having a package with minigzip could be useful in some cases. > > Signed-off-by: Sergio Prado > --- > meta/recipes-co

[OE-core] [PATCH] zlib: build and package minigzip

2020-06-12 Thread Sergio Prado
minigzip is a minimal implementation of the gzip utility that simulates gzip using the zlib compression library. Having a package with minigzip could be useful in some cases. Signed-off-by: Sergio Prado --- meta/recipes-core/zlib/zlib_1.2.11.bb | 15 ++- 1 file changed, 14 insertion