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