]> git.pld-linux.org Git - packages/beep.git/commitdiff
- new spec
authorJacek Konieczny <jajcus@pld-linux.org>
Mon, 13 Jan 2003 08:47:14 +0000 (08:47 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    beep.spec -> 1.1

beep.spec [new file with mode: 0644]

diff --git a/beep.spec b/beep.spec
new file mode 100644 (file)
index 0000000..8d2fd7e
--- /dev/null
+++ b/beep.spec
@@ -0,0 +1,38 @@
+Summary:       Beeps the PC speaker with control of frequency, duration, repetitions, etc.
+Name:          beep
+Version:       1.2.2
+Release:       1
+License:       GPL
+Group:         Applications/Sound
+Source0:       http://www.johnath.com/beep/%{name}-%{version}.tar.gz
+URL:           http://johnath.com/beep/
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+beep does what you'd expect: it beeps. But unlike printf("\a"), beep allows
+you to control pitch, duration, and repetitions. Its job is to live inside
+shell/perl scripts and allow more granularity than one has otherwise. It is
+controlled completely through command line options. It's not supposed to be
+complex, and it isn't - but it makes system monitoring (or whatever else it
+gets hacked onto) that much more informative.
+
+%prep
+%setup -q
+
+%build
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+install -d $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man1}
+
+install beep $RPM_BUILD_ROOT%{_bindir}
+install beep.1.gz $RPM_BUILD_ROOT%{_mandir}/man1
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_bindir}/*
+%{_mandir}/man*/*
This page took 0.067106 seconds and 4 git commands to generate.