]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - lfs/sdl2
sdl2: Update to version 2.26.0
[people/pmueller/ipfire-2.x.git] / lfs / sdl2
CommitLineData
bc38ecd0
MT
1###############################################################################
2# #
3# IPFire.org - A linux based firewall #
47c2e4c0 4# Copyright (C) 2007-2022 IPFire Team <info@ipfire.org> #
bc38ecd0
MT
5# #
6# This program is free software: you can redistribute it and/or modify #
7# it under the terms of the GNU General Public License as published by #
8# the Free Software Foundation, either version 3 of the License, or #
9# (at your option) any later version. #
10# #
11# This program is distributed in the hope that it will be useful, #
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 #
17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
18# #
19###############################################################################
20
21###############################################################################
22# Definitions
23###############################################################################
24
25include Config
26
47c2e4c0 27VER = 2.26.0
f15707c7 28SUMMARY = Simple DirectMedia Layer Library
bc38ecd0 29
15c01e30 30THISAPP = SDL2-$(VER)
bc38ecd0
MT
31DL_FILE = $(THISAPP).tar.gz
32DL_FROM = $(URL_IPFIRE)
33DIR_APP = $(DIR_SRC)/$(THISAPP)
34TARGET = $(DIR_INFO)/$(THISAPP)
15c01e30 35PROG = sdl2
47c2e4c0 36PAK_VER = 8
bc38ecd0 37
2dc2a278 38DEPS = alsa
bc38ecd0 39
f15707c7
RR
40SERVICES =
41
bc38ecd0
MT
42###############################################################################
43# Top-level Rules
44###############################################################################
45
46objects = $(DL_FILE)
47
48$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
49
47c2e4c0 50$(DL_FILE)_BLAKE2 = 4971cef0d34706dd02eff5277fd58b35523ee3b1d860999b37ddf4dbc463f493859a43325c4faa9bd048c519d49788adb3dd7f38e6b29eb635c0e0e405c944e9
bc38ecd0
MT
51
52install : $(TARGET)
53
54check : $(patsubst %,$(DIR_CHK)/%,$(objects))
55
56download :$(patsubst %,$(DIR_DL)/%,$(objects))
57
9a7e4d85 58b2 : $(subst %,%_BLAKE2,$(objects))
bc38ecd0
MT
59
60###############################################################################
9a7e4d85 61# Downloading, checking, b2sum
bc38ecd0
MT
62###############################################################################
63
64$(patsubst %,$(DIR_CHK)/%,$(objects)) :
65 @$(CHECK)
66
67$(patsubst %,$(DIR_DL)/%,$(objects)) :
68 @$(LOAD)
69
9a7e4d85
PM
70$(subst %,%_BLAKE2,$(objects)) :
71 @$(B2SUM)
bc38ecd0 72
f15707c7 73dist:
bc38ecd0
MT
74 @$(PAK)
75
76###############################################################################
77# Installation Details
78###############################################################################
79
80$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
81 @$(PREBUILD)
82 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
ec690829 83 $(UPDATE_AUTOMAKE)
15c01e30
AB
84 cd $(DIR_APP) && ./configure \
85 --prefix=/usr \
86 --disable-static
bc38ecd0
MT
87 cd $(DIR_APP) && make $(MAKETUNING)
88 cd $(DIR_APP) && make install
89 @rm -rf $(DIR_APP)
90 @$(POSTBUILD)