]> git.ipfire.org Git - people/pmueller/ipfire-3.x.git/blame - pkgs/beep/beep.nm
avahi: Update to 0.6.30.
[people/pmueller/ipfire-3.x.git] / pkgs / beep / beep.nm
CommitLineData
7595c7f7
SS
1###############################################################################
2# #
3# IPFire.org - A linux based firewall #
4# Copyright (C) 2007, 2008 Michael Tremer & Christian Schmidt #
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 $(PKGROOT)/Include
26
27PKG_NAME = beep
28PKG_VER = 1.2.2
8075ca89 29PKG_REL = 1
7595c7f7
SS
30
31PKG_MAINTAINER =
bb7d617c 32PKG_GROUPS = Applications/System
7595c7f7
SS
33PKG_URL = http://www.johnath.com/beep/
34PKG_LICENSE = GPLv2+
35PKG_SUMMARY = Beep the PC speaker any number of ways.
36
37define PKG_DESCRIPTION
38 Beep allows the user to control the PC speaker with precision, \
39 allowing different sounds to indicate different events. While it \
40 can be run quite happily on the commandline, it's intended place \
41 of residence is within shell/perl scripts, notifying the user when \
42 something interesting occurs. Of course, it has no notion of \
43 what's interesting, but it's real good at that notifying part.
44endef
45
46PKG_TARBALL = $(THISAPP).tar.gz
47
48define STAGE_BUILD
c9858436 49 $(DO_FIX_LIBTOOL)
8075ca89 50 cd $(DIR_APP) && make FLAGS="$(CFLAGS)" $(PARALLELISMFLAGS)
7595c7f7
SS
51endef
52
53define STAGE_INSTALL
54 -mkdir -pv $(BUILDROOT)/usr/bin
9af998a9 55 -mkdir -pv $(BUILDROOT)/usr/share/man/man1
7595c7f7 56 cd $(DIR_APP) && install -m 0755 beep $(BUILDROOT)/usr/bin
9af998a9 57 cd $(DIR_APP) && cp beep.1.gz $(BUILDROOT)/usr/share/man/man1
7595c7f7 58endef