]> git.ipfire.org Git - ipfire-2.x.git/blame - lfs/alsa
Pakfire laedt die Listen jetzt besser und hat eine veraenderte Oberflaeche bekommen.
[ipfire-2.x.git] / lfs / alsa
CommitLineData
bc8ca5e4
MT
1###############################################################################
2# This file is part of the IPCop Firewall. #
3# #
4# IPCop is free software; you can redistribute it and/or modify #
5# it under the terms of the GNU General Public License as published by #
6# the Free Software Foundation; either version 2 of the License, or #
7# (at your option) any later version. #
8# #
9# IPCop is distributed in the hope that it will be useful, #
10# but WITHOUT ANY WARRANTY; without even the implied warranty of #
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
12# GNU General Public License for more details. #
13# #
14# You should have received a copy of the GNU General Public License #
15# along with IPCop; if not, write to the Free Software #
16# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
17# #
18# Makefiles are based on LFSMake, which is #
19# Copyright (C) 2002 Rod Roard <rod@sunsetsystems.com> #
20# #
21###############################################################################
22
23###############################################################################
24# Definitions
25###############################################################################
26
27include Config
28
29VER = 1.0.13
30
31THISAPP = alsa-lib-$(VER)
32DL_FILE = $(THISAPP).tar.bz2
33DL_FROM = $(URL_IPFIRE)
34DIR_APP = $(DIR_SRC)/$(THISAPP)
35TARGET = $(DIR_INFO)/$(THISAPP)
36PROG = alsa
37PAK_VER = 1
38
39DESCDE = "Alsa ist ein Linux-Sound-Server."
40DESCEN = "Alsa is a linux sound server."
41DEPS = ""
42
43###############################################################################
44# Top-level Rules
45###############################################################################
46
47objects = $(DL_FILE) alsa-utils-$(VER).tar.bz2
48
49$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
50alsa-utils-$(VER).tar.bz2 = $(DL_FROM)/alsa-utils-$(VER).tar.bz2
51
52$(DL_FILE)_MD5 = d55a9d7d2a79d738a1b7a511cffda4b6
53alsa-utils-$(VER).tar.bz2_MD5 = dfe4bb5d3217f3ec662b172ce8397cf0
54
55install : $(TARGET)
56
57check : $(patsubst %,$(DIR_CHK)/%,$(objects))
58
59download :$(patsubst %,$(DIR_DL)/%,$(objects))
60
61md5 : $(subst %,%_MD5,$(objects))
62
63dist:
64 @$(PAK)
65
66###############################################################################
67# Downloading, checking, md5sum
68###############################################################################
69
70$(patsubst %,$(DIR_CHK)/%,$(objects)) :
71 @$(CHECK)
72
73$(patsubst %,$(DIR_DL)/%,$(objects)) :
74 @$(LOAD)
75
76$(subst %,%_MD5,$(objects)) :
77 @$(MD5)
78
79###############################################################################
80# Installation Details
81###############################################################################
82
83$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
84 @$(PREBUILD)
85 @rm -rf $(DIR_SRC)/alsa* && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
86 cd $(DIR_APP) && ./configure --enable-static
87 cd $(DIR_APP) && make $(MAKETUNING)
88 cd $(DIR_APP) && make install
89 cd $(DIR_SRC) && tar xfj $(DIR_DL)/alsa-utils-$(VER).tar.bz2
90 cd $(DIR_SRC)/alsa-utils-$(VER) && ./configure
91 cd $(DIR_SRC)/alsa-utils-$(VER) && make
92 cd $(DIR_SRC)/alsa-utils-$(VER) && make install
93 @rm -rf $(DIR_SRC)/alsa*
94 @$(POSTBUILD)