]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - lfs/alsa
Merge branch 'master' into temp-c165-development
[people/pmueller/ipfire-2.x.git] / lfs / alsa
1 ###############################################################################
2 # #
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007-2018 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.5.1
30 UVER = 1.2.5.1
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 = 13
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)_MD5 = c8335793e7828803311edc48fb71662e
59 alsa-utils-$(UVER).tar.bz2_MD5 = 8f142bebff84ff05438b46a0e896f53a
60 alsa-firmware-$(FVER).tar.bz2_MD5 = ee6c1d24a1a4ac1d86992b408ed710a2
61
62 install : $(TARGET)
63
64 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
65
66 download :$(patsubst %,$(DIR_DL)/%,$(objects))
67
68 md5 : $(subst %,%_MD5,$(objects))
69
70 dist:
71 @$(PAK)
72
73 ###############################################################################
74 # Downloading, checking, md5sum
75 ###############################################################################
76
77 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
78 @$(CHECK)
79
80 $(patsubst %,$(DIR_DL)/%,$(objects)) :
81 @$(LOAD)
82
83 $(subst %,%_MD5,$(objects)) :
84 @$(MD5)
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)