]>
Commit | Line | Data |
---|---|---|
c3defe9b | 1 | ############################################################################### |
c3defe9b | 2 | # # |
70df8302 | 3 | # IPFire.org - A linux based firewall # |
d5781436 | 4 | # Copyright (C) 2015 Michael Tremer & Christian Schmidt # |
70df8302 MT |
5 | # # |
6 | # This program is free software: you can redistribute it and/or modify # | |
c3defe9b | 7 | # it under the terms of the GNU General Public License as published by # |
70df8302 | 8 | # the Free Software Foundation, either version 3 of the License, or # |
c3defe9b MT |
9 | # (at your option) any later version. # |
10 | # # | |
70df8302 | 11 | # This program is distributed in the hope that it will be useful, # |
c3defe9b MT |
12 | # but WITHOUT ANY WARRANTY; without even the implied warranty of # |
13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # | |
14 | # GNU General Public License for more details. # | |
15 | # # | |
16 | # You should have received a copy of the GNU General Public License # | |
70df8302 | 17 | # along with this program. If not, see <http://www.gnu.org/licenses/>. # |
c3defe9b MT |
18 | # # |
19 | ############################################################################### | |
20 | ||
21 | ############################################################################### | |
22 | # Definitions | |
23 | ############################################################################### | |
24 | ||
25 | include Config | |
26 | ||
d5781436 | 27 | VER = 1.3.1 |
c3defe9b | 28 | |
79518a2f | 29 | THISAPP = libjpeg-turbo-$(VER) |
c3defe9b | 30 | DL_FILE = $(THISAPP).tar.gz |
2ae94d2d | 31 | DL_FROM = $(URL_IPFIRE) |
79518a2f | 32 | DIR_APP = $(DIR_SRC)/$(THISAPP) |
c3defe9b | 33 | TARGET = $(DIR_INFO)/$(THISAPP) |
a8b159e7 MT |
34 | PROG = libjpeg |
35 | PAK_VER = ipfire-beta1 | |
c3defe9b MT |
36 | |
37 | ############################################################################### | |
38 | # Top-level Rules | |
39 | ############################################################################### | |
40 | ||
41 | objects = $(DL_FILE) | |
42 | ||
43 | $(DL_FILE) = $(DL_FROM)/$(DL_FILE) | |
44 | ||
d5781436 | 45 | $(DL_FILE)_MD5 = 2c3a68129dac443a72815ff5bb374b05 |
c3defe9b MT |
46 | |
47 | install : $(TARGET) | |
48 | ||
49 | check : $(patsubst %,$(DIR_CHK)/%,$(objects)) | |
50 | ||
51 | download :$(patsubst %,$(DIR_DL)/%,$(objects)) | |
52 | ||
53 | md5 : $(subst %,%_MD5,$(objects)) | |
54 | ||
c3defe9b MT |
55 | ############################################################################### |
56 | # Downloading, checking, md5sum | |
57 | ############################################################################### | |
58 | ||
59 | $(patsubst %,$(DIR_CHK)/%,$(objects)) : | |
60 | @$(CHECK) | |
61 | ||
62 | $(patsubst %,$(DIR_DL)/%,$(objects)) : | |
63 | @$(LOAD) | |
64 | ||
65 | $(subst %,%_MD5,$(objects)) : | |
66 | @$(MD5) | |
67 | ||
68 | ############################################################################### | |
69 | # Installation Details | |
70 | ############################################################################### | |
71 | ||
72 | $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) | |
73 | @$(PREBUILD) | |
74 | @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE) | |
2ae94d2d | 75 | cd $(DIR_APP) && ./configure --prefix=/usr --enable-static --enable-shared |
c2fa83f7 | 76 | cd $(DIR_APP) && [ -e "libtool" ] || ln -svf /usr/bin/libtool libtool |
ddac6087 | 77 | cd $(DIR_APP) && make $(MAKETUNING) |
c3defe9b MT |
78 | cd $(DIR_APP) && make install |
79 | @rm -rf $(DIR_APP) | |
80 | @$(POSTBUILD) |