]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blobdiff - lfs/libjpeg
suricata: Link against libatomic on armv5tel
[people/pmueller/ipfire-2.x.git] / lfs / libjpeg
index 6251fc85b4423918522b93ea5a36282b6623f156..1fbcdf02a5da3ed02df2b9e72ce6a95bc8fa0d66 100644 (file)
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2018  IPFire Team  <info@ipfire.org>                     #
+# Copyright (C) 2007-2020  IPFire Team  <info@ipfire.org>                     #
 #                                                                             #
 # This program is free software: you can redistribute it and/or modify        #
 # it under the terms of the GNU General Public License as published by        #
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 1.5.1
+VER        = 2.0.4
 
 THISAPP    = libjpeg-turbo-$(VER)
 DL_FILE    = $(THISAPP).tar.gz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_MD5 = 55deb139b0cac3c8200b75d485fc13f3
+$(DL_FILE)_MD5 = d01d9e0c28c27bc0de9f4e2e8ff49855
 
 install : $(TARGET)
 
@@ -70,12 +70,17 @@ $(subst %,%_MD5,$(objects)) :
 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @$(PREBUILD)
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
-       cd $(DIR_APP) && ./configure --prefix=/usr \
-                       --with-jpeg8 \
-                       --disable-static\
-                       --mandir=/usr/share/man
-       cd $(DIR_APP) && make $(MAKETUNING)
-       cd $(DIR_APP) && make install
+       cd $(DIR_APP) && mkdir -pv build
+       cd $(DIR_APP)/build && cmake .. \
+               -DCMAKE_INSTALL_PREFIX=/usr \
+               -DCMAKE_BUILD_TYPE=RELEASE \
+               -DENABLE_STATIC=FALSE \
+               -DCMAKE_INSTALL_DOCDIR=/usr/share/doc/libjpeg-turbo \
+               -DCMAKE_INSTALL_MANDIR=/usr/share/man \
+               -DCMAKE_INSTALL_DEFAULT_LIBDIR=/usr/lib \
+               -DWITH_JPEG8=1
+       cd $(DIR_APP)/build && make $(MAKETUNING)
+       cd $(DIR_APP)/build && make install
+
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
-