]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - lfs/alsa
Finish core48.
[people/pmueller/ipfire-2.x.git] / lfs / alsa
1 ###############################################################################
2 # #
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2010 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 ifeq "$(PAE)" "1"
28 VERSUFIX=ipfire-pae
29 else
30 ifeq "$(XEN)" "1"
31 VERSUFIX=ipfire-xen
32 else
33 VERSUFIX=ipfire
34 endif
35 endif
36
37 VER = 1.0.23
38 UVER = 1.0.23
39 FVER = 1.0.23
40 DVER = 1.0.23
41
42 THISAPP = alsa-lib-$(VER)
43 DL_FILE = $(THISAPP).tar.bz2
44 DL_FROM = $(URL_IPFIRE)
45 DIR_APP = $(DIR_SRC)/$(THISAPP)
46 PROG = alsa
47 PAK_VER = 8
48
49 DEPS = ""
50
51 ifeq "$(KMOD)" "1"
52 TARGET = $(DIR_INFO)/$(THISAPP)-kmod-$(KVER)-$(VERSUFIX)
53 else
54 TARGET = $(DIR_INFO)/$(THISAPP)
55 endif
56
57 ###############################################################################
58 # Top-level Rules
59 ###############################################################################
60
61 objects = $(DL_FILE) alsa-utils-$(UVER).tar.bz2 alsa-firmware-$(FVER).tar.bz2 \
62 alsa-driver-$(DVER).tar.bz2
63
64 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
65 alsa-utils-$(UVER).tar.bz2 = $(DL_FROM)/alsa-utils-$(UVER).tar.bz2
66 alsa-firmware-$(FVER).tar.bz2 = $(DL_FROM)/alsa-firmware-$(FVER).tar.bz2
67 alsa-driver-$(DVER).tar.bz2 = $(DL_FROM)/alsa-driver-$(DVER).tar.bz2
68
69 $(DL_FILE)_MD5 = f48b50421d8a69d2d806d9c47e534f0d
70 alsa-utils-$(UVER).tar.bz2_MD5 = cb0cf46029ac9549cf3a31bff6a4f4e1
71 alsa-firmware-$(FVER).tar.bz2_MD5 = e3f755331d6d485f6fd697249b90f877
72 alsa-driver-$(DVER).tar.bz2_MD5 = 4be102f995bd4cc68e6e8178b0d19ec2
73
74 install : $(TARGET)
75
76 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
77
78 download :$(patsubst %,$(DIR_DL)/%,$(objects))
79
80 md5 : $(subst %,%_MD5,$(objects))
81
82 dist:
83 @$(PAK)
84
85 ###############################################################################
86 # Downloading, checking, md5sum
87 ###############################################################################
88
89 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
90 @$(CHECK)
91
92 $(patsubst %,$(DIR_DL)/%,$(objects)) :
93 @$(LOAD)
94
95 $(subst %,%_MD5,$(objects)) :
96 @$(MD5)
97
98 ###############################################################################
99 # Installation Details
100 ###############################################################################
101
102 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
103 @$(PREBUILD)
104 @rm -rf $(DIR_SRC)/alsa*
105 ifeq "$(KMOD)" "1"
106 cd $(DIR_SRC) && tar xfj $(DIR_DL)/alsa-driver-$(DVER).tar.bz2
107 cd $(DIR_SRC)/alsa-driver-$(DVER) && sed -i -e "s| soc/ | |g" Makefile
108 cd $(DIR_SRC)/alsa-driver-$(DVER) && sed -i -e "s| soc||g" Makefile
109 cd $(DIR_SRC)/alsa-driver-$(DVER) && ./configure --with-kernel=/usr/src/linux
110 cd $(DIR_SRC)/alsa-driver-$(DVER) && make $(MAKETUNING) $(EXTRA_MAKE)
111 cd $(DIR_SRC)/alsa-driver-$(DVER) && make install
112 else
113 cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
114 cd $(DIR_APP) && ./configure --enable-static
115 cd $(DIR_APP) && make $(MAKETUNING) $(EXTRA_MAKE)
116 cd $(DIR_APP) && make install
117 cd $(DIR_SRC) && tar xfj $(DIR_DL)/alsa-utils-$(UVER).tar.bz2
118 cd $(DIR_SRC)/alsa-utils-$(UVER) && ./configure --disable-xmlto
119 cd $(DIR_SRC)/alsa-utils-$(UVER) && make $(MAKETUNING) $(EXTRA_MAKE)
120 cd $(DIR_SRC)/alsa-utils-$(UVER) && make install
121 cd $(DIR_SRC) && tar xfj $(DIR_DL)/alsa-firmware-$(FVER).tar.bz2
122 cd $(DIR_SRC)/alsa-firmware-$(FVER) && ./configure
123 cd $(DIR_SRC)/alsa-firmware-$(FVER) && make $(MAKETUNING) $(EXTRA_MAKE)
124 cd $(DIR_SRC)/alsa-firmware-$(FVER) && make install
125 endif
126 @rm -rf $(DIR_SRC)/alsa*
127 @$(POSTBUILD)