]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - lfs/alsa
suricata: Change midstream policy to "pass-flow"
[people/pmueller/ipfire-2.x.git] / lfs / alsa
1 ###############################################################################
2 # #
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007-2023 IPFire Team <info@ipfire.org> #
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
25 include Config
26
27 SUMMARY = Advanced Linux Sound Architecture
28
29 VER = 1.2.8
30 UVER = 1.2.8
31 FVER = 1.2.4
32
33 VERSUFIX = ipfire$(KCFG)
34
35 THISAPP = alsa-lib-$(VER)
36 DL_FILE = $(THISAPP).tar.bz2
37 DL_FROM = $(URL_IPFIRE)
38 DIR_APP = $(DIR_SRC)/$(THISAPP)
39 PROG = alsa
40 PAK_VER = 15
41
42 DEPS =
43
44 SERVICES = alsa
45
46 TARGET = $(DIR_INFO)/$(THISAPP)
47
48 ###############################################################################
49 # Top-level Rules
50 ###############################################################################
51
52 objects = $(DL_FILE) alsa-utils-$(UVER).tar.bz2 alsa-firmware-$(FVER).tar.bz2
53
54 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
55 alsa-utils-$(UVER).tar.bz2 = $(DL_FROM)/alsa-utils-$(UVER).tar.bz2
56 alsa-firmware-$(FVER).tar.bz2 = $(DL_FROM)/alsa-firmware-$(FVER).tar.bz2
57
58 $(DL_FILE)_BLAKE2 = e6171ac557db6265e3f02df7bd269eca62d09afaf2c04dc913d3bb217df23a8e66e808ad453fea5ed90d4d9226feb05065ad5d9b3575241b76675ccd27b9b4d4
59 alsa-utils-$(UVER).tar.bz2_BLAKE2 = 4b9676957e775be51076b4798dfd384db4eea440c682899024034d3dd593ba24f1d42b8d742c312e041a37f0dbbc12b16635d79f6e6633a3459cc21f80739b5e
60 alsa-firmware-$(FVER).tar.bz2_BLAKE2 = 0f844f6cc4859b72635f24d347b4c790469aee39aa60d9addb2c168dcf06b48e7e3cbba26ff21c7e1f5aa355641eec7ab934cb09bfac8ca116a6ac6a7db9d548
61
62 install : $(TARGET)
63
64 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
65
66 download :$(patsubst %,$(DIR_DL)/%,$(objects))
67
68 b2 : $(subst %,%_BLAKE2,$(objects))
69
70 dist:
71 @$(PAK)
72
73 ###############################################################################
74 # Downloading, checking, b2sum
75 ###############################################################################
76
77 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
78 @$(CHECK)
79
80 $(patsubst %,$(DIR_DL)/%,$(objects)) :
81 @$(LOAD)
82
83 $(subst %,%_BLAKE2,$(objects)) :
84 @$(B2SUM)
85
86 ###############################################################################
87 # Installation Details
88 ###############################################################################
89
90 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
91 @$(PREBUILD)
92 @rm -rf $(DIR_SRC)/alsa*
93 cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
94 cd $(DIR_APP) && tar xfj $(DIR_DL)/alsa-utils-$(UVER).tar.bz2
95 cd $(DIR_APP) && tar xfj $(DIR_DL)/alsa-firmware-$(FVER).tar.bz2
96 $(UPDATE_AUTOMAKE)
97 cd $(DIR_APP) && ./configure
98 cd $(DIR_APP) && make $(MAKETUNING) $(EXTRA_MAKE)
99 cd $(DIR_APP) && make install
100 cd $(DIR_APP)/alsa-utils-$(UVER) && ./configure --disable-xmlto
101 cd $(DIR_APP)/alsa-utils-$(UVER) && make $(MAKETUNING) $(EXTRA_MAKE)
102 cd $(DIR_APP)/alsa-utils-$(UVER) && make install
103 cd $(DIR_APP)/alsa-firmware-$(FVER) && ./configure
104 cd $(DIR_APP)/alsa-firmware-$(FVER) && make $(MAKETUNING) $(EXTRA_MAKE)
105 cd $(DIR_APP)/alsa-firmware-$(FVER) && make install
106 # install initscript
107 $(call INSTALL_INITSCRIPTS,$(SERVICES))
108 @rm -rf $(DIR_SRC)/alsa*
109 @$(POSTBUILD)