]> git.pld-linux.org Git - packages/beep.git/blob - beep.spec
- pl description, don't force gzipped man
[packages/beep.git] / beep.spec
1 Summary:        Beeps the PC speaker controlling frequency, duration, repetitions, etc.
2 Summary(pl):    Piszczy na g³o¶niczku PC kontroluj±c czêstotliwo¶æ, d³ugo¶æ, powtórzenia itp.
3 Name:           beep
4 Version:        1.2.2
5 Release:        1
6 License:        GPL
7 Group:          Applications/Sound
8 Source0:        http://www.johnath.com/beep/%{name}-%{version}.tar.gz
9 URL:            http://johnath.com/beep/
10 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
11
12 %description
13 beep does what you'd expect: it beeps. But unlike printf("\a"), beep
14 allows you to control pitch, duration, and repetitions. Its job is to
15 live inside shell/perl scripts and allow more granularity than one has
16 otherwise. It is controlled completely through command line options.
17 It's not supposed to be complex, and it isn't - but it makes system
18 monitoring (or whatever else it gets hacked onto) that much more
19 informative.
20
21 %description -l pl
22 beep robi to, czego mo¿na siê spodziewaæ: piszczy. Ale w
23 przeciwieñstwie do printf("\a"), pozwala kontrolowaæ wysoko¶æ d¼wiêku,
24 czas trwania i powtórzenia. Jego zadaniem jest ¿yæ w skryptach Perla
25 lub pow³oki i pozwalaæ na wiêcej, ni¿ mo¿na zrobiæ bez niego.
26 Programem w ca³o¶ci steruje siê z linii poleceñ. Nie ma on byæ
27 skomplikowany - ale pozwala na bardziej informacyjne monitorowanie
28 systemu (czy cokolwiek, do czego zostanie u¿yty).
29
30 %prep
31 %setup -q
32
33 %build
34 %{__make}
35
36 %install
37 rm -rf $RPM_BUILD_ROOT
38 install -d $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man1}
39
40 install beep $RPM_BUILD_ROOT%{_bindir}
41 gzip -dc beep.1.gz > $RPM_BUILD_ROOT%{_mandir}/man1/beep.1
42
43 %clean
44 rm -rf $RPM_BUILD_ROOT
45
46 %files
47 %defattr(644,root,root,755)
48 %attr(755,root,root) %{_bindir}/*
49 %{_mandir}/man*/*
This page took 1.765099 seconds and 3 git commands to generate.