]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - lfs/alsa
Installer: set gpl_accepted marker after installation.
[people/pmueller/ipfire-2.x.git] / lfs / alsa
CommitLineData
bc8ca5e4 1###############################################################################
bc8ca5e4 2# #
70df8302 3# IPFire.org - A linux based firewall #
26c1cc71 4# Copyright (C) 2010 IPFire Team <info@ipfire.org> #
70df8302
MT
5# #
6# This program is free software: you can redistribute it and/or modify #
bc8ca5e4 7# it under the terms of the GNU General Public License as published by #
70df8302 8# the Free Software Foundation, either version 3 of the License, or #
bc8ca5e4
MT
9# (at your option) any later version. #
10# #
70df8302 11# This program is distributed in the hope that it will be useful, #
bc8ca5e4
MT
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 #
70df8302 17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
bc8ca5e4
MT
18# #
19###############################################################################
20
21###############################################################################
22# Definitions
23###############################################################################
24
25include Config
26
26c1cc71
AF
27ifeq "$(PAE)" "1"
28 VERSUFIX=ipfire-pae
29else
2b2e03ed
AF
30ifeq "$(XEN)" "1"
31 VERSUFIX=ipfire-xen
32else
33 VERSUFIX=ipfire
34endif
26c1cc71 35endif
2b2e03ed 36
ddb3a8d9
AF
37VER = 1.0.23
38UVER = 1.0.23
39FVER = 1.0.23
40DVER = 1.0.23
bc8ca5e4
MT
41
42THISAPP = alsa-lib-$(VER)
43DL_FILE = $(THISAPP).tar.bz2
44DL_FROM = $(URL_IPFIRE)
45DIR_APP = $(DIR_SRC)/$(THISAPP)
bc8ca5e4 46PROG = alsa
7924261f 47PAK_VER = 8
bc8ca5e4 48
bc8ca5e4
MT
49DEPS = ""
50
2b2e03ed
AF
51ifeq "$(KMOD)" "1"
52 TARGET = $(DIR_INFO)/$(THISAPP)-kmod-$(KVER)-$(VERSUFIX)
53else
54 TARGET = $(DIR_INFO)/$(THISAPP)
55endif
56
bc8ca5e4
MT
57###############################################################################
58# Top-level Rules
59###############################################################################
60
a8a3fbc0
AF
61objects = $(DL_FILE) alsa-utils-$(UVER).tar.bz2 alsa-firmware-$(FVER).tar.bz2 \
62 alsa-driver-$(DVER).tar.bz2
bc8ca5e4
MT
63
64$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
a8a3fbc0
AF
65alsa-utils-$(UVER).tar.bz2 = $(DL_FROM)/alsa-utils-$(UVER).tar.bz2
66alsa-firmware-$(FVER).tar.bz2 = $(DL_FROM)/alsa-firmware-$(FVER).tar.bz2
67alsa-driver-$(DVER).tar.bz2 = $(DL_FROM)/alsa-driver-$(DVER).tar.bz2
bc8ca5e4 68
ddb3a8d9
AF
69$(DL_FILE)_MD5 = f48b50421d8a69d2d806d9c47e534f0d
70alsa-utils-$(UVER).tar.bz2_MD5 = cb0cf46029ac9549cf3a31bff6a4f4e1
71alsa-firmware-$(FVER).tar.bz2_MD5 = e3f755331d6d485f6fd697249b90f877
72alsa-driver-$(DVER).tar.bz2_MD5 = 4be102f995bd4cc68e6e8178b0d19ec2
bc8ca5e4
MT
73
74install : $(TARGET)
75
76check : $(patsubst %,$(DIR_CHK)/%,$(objects))
77
78download :$(patsubst %,$(DIR_DL)/%,$(objects))
79
80md5 : $(subst %,%_MD5,$(objects))
81
82dist:
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)
4ef84d05
AF
104 @rm -rf $(DIR_SRC)/alsa*
105ifeq "$(KMOD)" "1"
a8a3fbc0
AF
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
4ef84d05
AF
112else
113 cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
bc8ca5e4 114 cd $(DIR_APP) && ./configure --enable-static
fcc53523 115 cd $(DIR_APP) && make $(MAKETUNING) $(EXTRA_MAKE)
bc8ca5e4 116 cd $(DIR_APP) && make install
a8a3fbc0
AF
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
4ef84d05 125endif
bc8ca5e4
MT
126 @rm -rf $(DIR_SRC)/alsa*
127 @$(POSTBUILD)