From fbbc6ad9d6dac4d4707d1159f666d789107c80ea Mon Sep 17 00:00:00 2001 From: Lukas Rusak Date: Tue, 10 Oct 2017 19:44:41 -0700 Subject: [PATCH] zlib: remove building minizip --- packages/compress/zlib/package.mk | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/packages/compress/zlib/package.mk b/packages/compress/zlib/package.mk index 006a7f30a1..b12439dcf5 100644 --- a/packages/compress/zlib/package.mk +++ b/packages/compress/zlib/package.mk @@ -28,28 +28,4 @@ PKG_DEPENDS_TARGET="toolchain" PKG_SECTION="compress" PKG_SHORTDESC="zlib: A general purpose (ZIP) data compression library" PKG_LONGDESC="zlib is a general purpose data compression library. All the code is thread safe. The data format used by the zlib library is described by RFCs (Request for Comments) 1950 to 1952 in the files ftp://ds.internic.net/rfc/rfc1950.txt (zlib format), rfc1951.txt (deflate format) and rfc1952.txt (gzip format)." -PKG_AUTORECONF="no" PKG_USE_NINJA="no" - -post_configure_target() { - ## configure minizip - ( - cd $PKG_BUILD/contrib/minizip - rm Makefile - export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:../../" - do_autoreconf - cp $PKG_BUILD/.$TARGET_NAME/zconf.h ./ - ./configure --host=$TARGET_NAME --build=$HOST_NAME $TARGET_CONFIGURE_OPTS --disable-shared --enable-static - ) -} - -post_make_target() { - # make minizip - make -C $PKG_BUILD/contrib/minizip -} - -post_makeinstall_target() { - # Install minizip - make -C $PKG_BUILD/contrib/minizip DESTDIR=$SYSROOT_PREFIX install -} -