]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame_incremental - lfs/alsa
hwdata: update pci and usb database.
[people/pmueller/ipfire-2.x.git] / lfs / alsa
... / ...
CommitLineData
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
25include Config
26
27ifeq "$(PAE)" "1"
28 VERSUFIX=ipfire-pae
29else
30ifeq "$(XEN)" "1"
31 VERSUFIX=ipfire-xen
32else
33 VERSUFIX=ipfire
34endif
35endif
36
37VER = 1.0.23
38UVER = 1.0.23
39FVER = 1.0.23
40DVER = 1.0.23
41
42THISAPP = alsa-lib-$(VER)
43DL_FILE = $(THISAPP).tar.bz2
44DL_FROM = $(URL_IPFIRE)
45DIR_APP = $(DIR_SRC)/$(THISAPP)
46PROG = alsa
47PAK_VER = 8
48
49DEPS = ""
50
51ifeq "$(KMOD)" "1"
52 TARGET = $(DIR_INFO)/$(THISAPP)-kmod-$(KVER)-$(VERSUFIX)
53else
54 TARGET = $(DIR_INFO)/$(THISAPP)
55endif
56
57###############################################################################
58# Top-level Rules
59###############################################################################
60
61objects = $(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)
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
68
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
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)
104 @rm -rf $(DIR_SRC)/alsa*
105ifeq "$(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
112else
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
125endif
126 @rm -rf $(DIR_SRC)/alsa*
127 @$(POSTBUILD)