]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - lfs/alsa
Added curl to core30.
[people/pmueller/ipfire-2.x.git] / lfs / alsa
CommitLineData
bc8ca5e4 1###############################################################################
bc8ca5e4 2# #
70df8302
MT
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 #
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
AF
27ifeq "$(XEN)" "1"
28 VERSUFIX=ipfire-xen
29else
30 VERSUFIX=ipfire
31endif
32
a3b414d3 33VER = 1.0.19
bc8ca5e4
MT
34
35THISAPP = alsa-lib-$(VER)
36DL_FILE = $(THISAPP).tar.bz2
37DL_FROM = $(URL_IPFIRE)
38DIR_APP = $(DIR_SRC)/$(THISAPP)
bc8ca5e4 39PROG = alsa
a3b414d3 40PAK_VER = 5
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
4539ab82 54objects = $(DL_FILE) alsa-utils-$(VER).tar.bz2 alsa-firmware-$(VER).tar.bz2 alsa-driver-$(VER).tar.bz2
bc8ca5e4
MT
55
56$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
57alsa-utils-$(VER).tar.bz2 = $(DL_FROM)/alsa-utils-$(VER).tar.bz2
4ef84d05
AF
58alsa-firmware-$(VER).tar.bz2 = $(DL_FROM)/alsa-firmware-$(VER).tar.bz2
59alsa-driver-$(VER).tar.bz2 = $(DL_FROM)/alsa-driver-$(VER).tar.bz2
bc8ca5e4 60
a3b414d3
AF
61$(DL_FILE)_MD5 = 73db3666c211e5fb023bb77450cf430d
62alsa-utils-$(VER).tar.bz2_MD5 = 5ff0379c707c1a29083233edc9ab4e06
63alsa-firmware-$(VER).tar.bz2_MD5 = bb93a1a58066bdb2308dc7b117df2b67
64alsa-driver-$(VER).tar.bz2_MD5 = 7045d69c49e70bb88278b8015d5eb509
bc8ca5e4
MT
65
66install : $(TARGET)
67
68check : $(patsubst %,$(DIR_CHK)/%,$(objects))
69
70download :$(patsubst %,$(DIR_DL)/%,$(objects))
71
72md5 : $(subst %,%_MD5,$(objects))
73
74dist:
75 @$(PAK)
76
77###############################################################################
78# Downloading, checking, md5sum
79###############################################################################
80
81$(patsubst %,$(DIR_CHK)/%,$(objects)) :
82 @$(CHECK)
83
84$(patsubst %,$(DIR_DL)/%,$(objects)) :
85 @$(LOAD)
86
87$(subst %,%_MD5,$(objects)) :
88 @$(MD5)
89
90###############################################################################
91# Installation Details
92###############################################################################
93
94$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
95 @$(PREBUILD)
4ef84d05
AF
96 @rm -rf $(DIR_SRC)/alsa*
97ifeq "$(KMOD)" "1"
98 cd $(DIR_SRC) && tar xfj $(DIR_DL)/alsa-driver-$(VER).tar.bz2
99 cd $(DIR_SRC)/alsa-driver-$(VER) && sed -i -e "s| soc/ | |g" Makefile
100 cd $(DIR_SRC)/alsa-driver-$(VER) && sed -i -e "s| soc||g" Makefile
458f04f2 101 cd $(DIR_SRC)/alsa-driver-$(VER) && ./configure --with-kernel=/usr/src/linux
fcc53523 102 cd $(DIR_SRC)/alsa-driver-$(VER) && make $(MAKETUNING) $(EXTRA_MAKE)
4ef84d05
AF
103 cd $(DIR_SRC)/alsa-driver-$(VER) && make install
104else
105 cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
bc8ca5e4 106 cd $(DIR_APP) && ./configure --enable-static
fcc53523 107 cd $(DIR_APP) && make $(MAKETUNING) $(EXTRA_MAKE)
bc8ca5e4
MT
108 cd $(DIR_APP) && make install
109 cd $(DIR_SRC) && tar xfj $(DIR_DL)/alsa-utils-$(VER).tar.bz2
a3b414d3 110 cd $(DIR_SRC)/alsa-utils-$(VER) && ./configure --disable-xmlto
fcc53523 111 cd $(DIR_SRC)/alsa-utils-$(VER) && make $(MAKETUNING) $(EXTRA_MAKE)
bc8ca5e4 112 cd $(DIR_SRC)/alsa-utils-$(VER) && make install
4ef84d05
AF
113 cd $(DIR_SRC) && tar xfj $(DIR_DL)/alsa-firmware-$(VER).tar.bz2
114 cd $(DIR_SRC)/alsa-firmware-$(VER) && ./configure
fcc53523 115 cd $(DIR_SRC)/alsa-firmware-$(VER) && make $(MAKETUNING) $(EXTRA_MAKE)
4ef84d05
AF
116 cd $(DIR_SRC)/alsa-firmware-$(VER) && make install
117endif
bc8ca5e4
MT
118 @rm -rf $(DIR_SRC)/alsa*
119 @$(POSTBUILD)