]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - lfs/alsa
Bump PAK_VER for all packages that use SERVICES
[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
c183124f 40PAK_VER = 14
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
9a7e4d85
PM
58$(DL_FILE)_BLAKE2 = 5464cc7f263bdf7b10aa7e1f542ad6dbc55bf300156fd1bded00375c41a518d4b14f96e28eb1c60a6ce7cc6e27da4b2e8598cd867f15417f260fc23513f93e11
59alsa-utils-$(UVER).tar.bz2_BLAKE2 = 79f96fd3ba1d92e72dc634dc01439acd3ccd02555c39cc1714c52bbd1e4bc8b68ec7bf5d219a704533e4a61587c3528504ef9cd7c652924d74daafa90f74e42a
60alsa-firmware-$(FVER).tar.bz2_BLAKE2 = 0f844f6cc4859b72635f24d347b4c790469aee39aa60d9addb2c168dcf06b48e7e3cbba26ff21c7e1f5aa355641eec7ab934cb09bfac8ca116a6ac6a7db9d548
bc8ca5e4
MT
61
62install : $(TARGET)
63
64check : $(patsubst %,$(DIR_CHK)/%,$(objects))
65
66download :$(patsubst %,$(DIR_DL)/%,$(objects))
67
9a7e4d85 68b2 : $(subst %,%_BLAKE2,$(objects))
bc8ca5e4 69
66c36198 70dist:
bc8ca5e4
MT
71 @$(PAK)
72
73###############################################################################
9a7e4d85 74# Downloading, checking, b2sum
bc8ca5e4
MT
75###############################################################################
76
77$(patsubst %,$(DIR_CHK)/%,$(objects)) :
78 @$(CHECK)
79
80$(patsubst %,$(DIR_DL)/%,$(objects)) :
81 @$(LOAD)
82
9a7e4d85
PM
83$(subst %,%_BLAKE2,$(objects)) :
84 @$(B2SUM)
bc8ca5e4
MT
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)