Adds initial mozjpeg.podspec

This commit is contained in:
Hugo Cuvillier
2018-11-09 16:48:03 +00:00
committed by Kornel
parent 9a1d32095b
commit 103c6c3276

158
mozjpeg.podspec Normal file
View File

@@ -0,0 +1,158 @@
Pod::Spec.new do |spec|
spec.name = "mozjpeg"
spec.version = "3.3.1"
spec.license = { :type => "BSD" }
spec.homepage = "https://github.com/mozilla/mozjpeg"
spec.summary = "Improved JPEG encoder."
spec.authors = "Mozilla"
spec.source = { :git => "https://github.com/mozilla/mozjpeg.git", :tag => "v#{spec.version}" }
spec.module_name = "mozjpeg"
spec.header_dir = "mozjpeg"
spec.platforms = { :ios => "8.0" }
spec.prepare_command = <<-CMD
cat << EOF > jconfig.h
#define JPEG_LIB_VERSION 80 /* Version 6b */
#define LIBJPEG_TURBO_VERSION 3.1.m
#define LIBJPEG_TURBO_VERSION_NUMBER 1
#define C_ARITH_CODING_SUPPORTED 1
#define D_ARITH_CODING_SUPPORTED 1
#define BITS_IN_JSAMPLE 8
#define HAVE_LOCALE_H 1
#define HAVE_STDDEF_H 1
#define HAVE_STDLIB_H 1
#define HAVE_UNSIGNED_CHAR 1
#define HAVE_UNSIGNED_SHORT 1
#define NEED_SYS_TYPES_H 1
#define WITH_SIMD 0
EOF
cat << EOF > jconfigint.h
#define BUILD "20180328"
#define INLINE __attribute__((always_inline))
#define PACKAGE_NAME "mozjpeg"
#define VERSION "#{spec.version}"
#ifdef __SIZEOF_SIZE_T__
#define SIZEOF_SIZE_T __SIZEOF_SIZE_T__
#else
#error Cannot determine the size of size_t
#endif
EOF
CMD
spec.private_header_files = "bmp.h",
"cderror.h",
"cdjpeg.h",
"jchuff.h",
"jcmaster.h",
"jconfigint.h",
"jdcoefct.h",
"jdct.h",
"jdhuff.h",
"jdmainct.h",
"jdmaster.h",
"jdsample.h",
"jmemsys.h",
"jpeg_nbits_table.h",
"jpegcomp.h",
"jsimd.h",
"jsimddct.h",
"jversion.h",
"wrppm.h"
spec.public_header_files = "jerror.h",
"jinclude.h",
"jconfig.h",
"jmorecfg.h",
"jpeglib.h",
"jpegint.h",
"transupp.h"
spec.source_files = "jcapimin.c",
"jcapistd.c",
"jccoefct.c",
"jccolor.c",
"jcdctmgr.c",
"jcext.c",
"jchuff.c",
"jcinit.c",
"jcmainct.c",
"jcmarker.c",
"jcmaster.c",
"jcomapi.c",
"jcparam.c",
"jcphuff.c",
"jcprepct.c",
"jcsample.c",
"jctrans.c",
"jdapimin.c",
"jdapistd.c",
"jdatadst.c",
"jdatasrc.c",
"jdcoefct.c",
"jdcolor.c",
"jddctmgr.c",
"jdhuff.c",
"jdinput.c",
"jdmainct.c",
"jdmarker.c",
"jdmaster.c",
"jdmerge.c",
"jdphuff.c",
"jdpostct.c",
"jdsample.c",
"jdtrans.c",
"jerror.c",
"jfdctflt.c",
"jfdctfst.c",
"jfdctint.c",
"jidctflt.c",
"jidctfst.c",
"jidctint.c",
"jidctred.c",
"jquant1.c",
"jquant2.c",
"jutils.c",
"jmemmgr.c",
"jaricom.c",
"jcarith.c",
"jdarith.c",
"transupp.c",
"jmemnobs.c",
"jsimd_none.c",
"jerror.h",
"jinclude.h",
"jconfig.h",
"jmorecfg.h",
"jpeglib.h",
"jpegint.h",
"transupp.h",
"bmp.h",
"cderror.h",
"cdjpeg.h",
"jchuff.h",
"jcmaster.h",
"jconfigint.h",
"jdcoefct.h",
"jdct.h",
"jdhuff.h",
"jdmainct.h",
"jdmaster.h",
"jdsample.h",
"jmemsys.h",
"jpeg_nbits_table.h",
"jpegcomp.h",
"jsimd.h",
"jsimddct.h",
"jversion.h",
"wrppm.h"
# Despite their extensions, these are header files that shouldn't be compiled
# on their own but should still be present for other files to include.
spec.preserve_path = "jdcolext.c",
"jstdhuff.c",
"jdcol565.c",
"jdmrgext.c",
"jdmrg565.c",
"jccolext.c"
end