]> git.ipfire.org Git - ipfire-2.x.git/blame - lfs/libjpeg
OpenVPN: Added auth and cipher menu, changed design, fixed bugs.
[ipfire-2.x.git] / lfs / libjpeg
CommitLineData
c3defe9b 1###############################################################################
c3defe9b 2# #
70df8302
MT
3# IPFire.org - A linux based firewall #
4# Copyright (C) 2007 Michael Tremer & Christian Schmidt #
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
25include Config
26
79518a2f 27VER = 1.3.0
c3defe9b 28
79518a2f 29THISAPP = libjpeg-turbo-$(VER)
c3defe9b 30DL_FILE = $(THISAPP).tar.gz
2ae94d2d 31DL_FROM = $(URL_IPFIRE)
79518a2f 32DIR_APP = $(DIR_SRC)/$(THISAPP)
c3defe9b 33TARGET = $(DIR_INFO)/$(THISAPP)
a8b159e7
MT
34PROG = libjpeg
35PAK_VER = ipfire-beta1
c3defe9b
MT
36
37###############################################################################
38# Top-level Rules
39###############################################################################
40
41objects = $(DL_FILE)
42
43$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
44
79518a2f 45$(DL_FILE)_MD5 = e1e65cc711a1ade1322c06ad4a647741
c3defe9b
MT
46
47install : $(TARGET)
48
49check : $(patsubst %,$(DIR_CHK)/%,$(objects))
50
51download :$(patsubst %,$(DIR_DL)/%,$(objects))
52
53md5 : $(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)