]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - lfs/alsa
Early spring clean: Remove trailing whitespaces, and correct licence headers
[people/pmueller/ipfire-2.x.git] / lfs / alsa
CommitLineData
bc8ca5e4 1###############################################################################
bc8ca5e4 2# #
70df8302 3# IPFire.org - A linux based firewall #
eee037b8 4# Copyright (C) 2007-2018 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
f15707c7 27SUMMARY = Advanced Linux Sound Architecture
2b2e03ed 28
ae367b9c
AB
29VER = 1.2.5.1
30UVER = 1.2.5.1
31FVER = 1.2.4
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
ae367b9c 40PAK_VER = 13
bc8ca5e4 41
2dc2a278 42DEPS =
bc8ca5e4 43
f15707c7
RR
44SERVICES = alsa
45
1c547336 46TARGET = $(DIR_INFO)/$(THISAPP)
2b2e03ed 47
bc8ca5e4
MT
48###############################################################################
49# Top-level Rules
50###############################################################################
51
1c547336 52objects = $(DL_FILE) alsa-utils-$(UVER).tar.bz2 alsa-firmware-$(FVER).tar.bz2
bc8ca5e4
MT
53
54$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
a8a3fbc0
AF
55alsa-utils-$(UVER).tar.bz2 = $(DL_FROM)/alsa-utils-$(UVER).tar.bz2
56alsa-firmware-$(FVER).tar.bz2 = $(DL_FROM)/alsa-firmware-$(FVER).tar.bz2
bc8ca5e4 57
ae367b9c
AB
58$(DL_FILE)_MD5 = c8335793e7828803311edc48fb71662e
59alsa-utils-$(UVER).tar.bz2_MD5 = 8f142bebff84ff05438b46a0e896f53a
60alsa-firmware-$(FVER).tar.bz2_MD5 = ee6c1d24a1a4ac1d86992b408ed710a2
bc8ca5e4
MT
61
62install : $(TARGET)
63
64check : $(patsubst %,$(DIR_CHK)/%,$(objects))
65
66download :$(patsubst %,$(DIR_DL)/%,$(objects))
67
68md5 : $(subst %,%_MD5,$(objects))
69
66c36198 70dist:
bc8ca5e4
MT
71 @$(PAK)
72
73###############################################################################
74# Downloading, checking, md5sum
75###############################################################################
76
77$(patsubst %,$(DIR_CHK)/%,$(objects)) :
78 @$(CHECK)
79
80$(patsubst %,$(DIR_DL)/%,$(objects)) :
81 @$(LOAD)
82
83$(subst %,%_MD5,$(objects)) :
84 @$(MD5)
85
86###############################################################################
87# Installation Details
88###############################################################################
89
90$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
91 @$(PREBUILD)
4ef84d05 92 @rm -rf $(DIR_SRC)/alsa*
4ef84d05 93 cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
71156719
MT
94 cd $(DIR_APP) && tar xfj $(DIR_DL)/alsa-utils-$(UVER).tar.bz2
95 cd $(DIR_APP) && tar xfj $(DIR_DL)/alsa-firmware-$(FVER).tar.bz2
96 $(UPDATE_AUTOMAKE)
68f7ce8f 97 cd $(DIR_APP) && ./configure
fcc53523 98 cd $(DIR_APP) && make $(MAKETUNING) $(EXTRA_MAKE)
bc8ca5e4 99 cd $(DIR_APP) && make install
71156719
MT
100 cd $(DIR_APP)/alsa-utils-$(UVER) && ./configure --disable-xmlto
101 cd $(DIR_APP)/alsa-utils-$(UVER) && make $(MAKETUNING) $(EXTRA_MAKE)
102 cd $(DIR_APP)/alsa-utils-$(UVER) && make install
103 cd $(DIR_APP)/alsa-firmware-$(FVER) && ./configure
104 cd $(DIR_APP)/alsa-firmware-$(FVER) && make $(MAKETUNING) $(EXTRA_MAKE)
105 cd $(DIR_APP)/alsa-firmware-$(FVER) && make install
38888b3d 106 # install initscript
f15707c7 107 $(call INSTALL_INITSCRIPTS,$(SERVICES))
bc8ca5e4
MT
108 @rm -rf $(DIR_SRC)/alsa*
109 @$(POSTBUILD)