]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - lfs/alsa
Updated splix to 2.0.0-rc2.
[people/pmueller/ipfire-2.x.git] / lfs / alsa
1 ###############################################################################
2 # #
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 #
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 VER = 1.0.17
28
29 THISAPP = alsa-lib-$(VER)
30 DL_FILE = $(THISAPP).tar.bz2
31 DL_FROM = $(URL_IPFIRE)
32 DIR_APP = $(DIR_SRC)/$(THISAPP)
33 ifeq "$(KMOD)" "1"
34 ifeq "$(SMP)" "1"
35 TARGET = $(DIR_INFO)/$(THISAPP)-kmod-smp
36 else
37 TARGET = $(DIR_INFO)/$(THISAPP)-kmod-$(KVER)
38 endif
39 else
40 TARGET = $(DIR_INFO)/$(THISAPP)
41 endif
42 PROG = alsa
43 PAK_VER = 4
44
45 DEPS = ""
46
47 ###############################################################################
48 # Top-level Rules
49 ###############################################################################
50
51 objects = $(DL_FILE) alsa-utils-$(VER).tar.bz2 alsa-firmware-$(VER).tar.bz2 alsa-driver-$(VER).tar.bz2
52
53 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
54 alsa-utils-$(VER).tar.bz2 = $(DL_FROM)/alsa-utils-$(VER).tar.bz2
55 alsa-firmware-$(VER).tar.bz2 = $(DL_FROM)/alsa-firmware-$(VER).tar.bz2
56 alsa-driver-$(VER).tar.bz2 = $(DL_FROM)/alsa-driver-$(VER).tar.bz2
57
58 $(DL_FILE)_MD5 = 9bbbdc502478cdc75074c9ba42c385b3
59 alsa-utils-$(VER).tar.bz2_MD5 = 14ccd0c900bf663afb36eac6f92d41d6
60 alsa-firmware-$(VER).tar.bz2_MD5 = a334a2b736cc6244162d7cc83247075d
61 alsa-driver-$(VER).tar.bz2_MD5 = 6044062d13dbfe61c0330fe9915cfdb4
62
63 install : $(TARGET)
64
65 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
66
67 download :$(patsubst %,$(DIR_DL)/%,$(objects))
68
69 md5 : $(subst %,%_MD5,$(objects))
70
71 dist:
72 @$(PAK)
73
74 ###############################################################################
75 # Downloading, checking, md5sum
76 ###############################################################################
77
78 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
79 @$(CHECK)
80
81 $(patsubst %,$(DIR_DL)/%,$(objects)) :
82 @$(LOAD)
83
84 $(subst %,%_MD5,$(objects)) :
85 @$(MD5)
86
87 ###############################################################################
88 # Installation Details
89 ###############################################################################
90
91 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
92 @$(PREBUILD)
93 @rm -rf $(DIR_SRC)/alsa*
94 ifeq "$(KMOD)" "1"
95 cd $(DIR_SRC) && tar xfj $(DIR_DL)/alsa-driver-$(VER).tar.bz2
96 cd $(DIR_SRC)/alsa-driver-$(VER) && sed -i -e "s| soc/ | |g" Makefile
97 cd $(DIR_SRC)/alsa-driver-$(VER) && sed -i -e "s| soc||g" Makefile
98 cd $(DIR_SRC)/alsa-driver-$(VER) && ./configure --with-kernel=/usr/src/linux
99 cd $(DIR_SRC)/alsa-driver-$(VER) && make $(MAKETUNING) $(EXTRA_MAKE)
100 cd $(DIR_SRC)/alsa-driver-$(VER) && make install
101 else
102 cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
103 cd $(DIR_APP) && ./configure --enable-static
104 cd $(DIR_APP) && make $(MAKETUNING) $(EXTRA_MAKE)
105 cd $(DIR_APP) && make install
106 cd $(DIR_SRC) && tar xfj $(DIR_DL)/alsa-utils-$(VER).tar.bz2
107 cd $(DIR_SRC)/alsa-utils-$(VER) && ./configure
108 cd $(DIR_SRC)/alsa-utils-$(VER) && make $(MAKETUNING) $(EXTRA_MAKE)
109 cd $(DIR_SRC)/alsa-utils-$(VER) && make install
110 cd $(DIR_SRC) && tar xfj $(DIR_DL)/alsa-firmware-$(VER).tar.bz2
111 cd $(DIR_SRC)/alsa-firmware-$(VER) && ./configure
112 cd $(DIR_SRC)/alsa-firmware-$(VER) && make $(MAKETUNING) $(EXTRA_MAKE)
113 cd $(DIR_SRC)/alsa-firmware-$(VER) && make install
114 endif
115 @rm -rf $(DIR_SRC)/alsa*
116 @$(POSTBUILD)