Compare commits
1 commit
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
956e503e59 |
3 changed files with 49 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -0,0 +1 @@
|
|||
/anchorman-0.0.1.tar.gz
|
||||
47
anchorman.spec
Normal file
47
anchorman.spec
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
Name: anchorman
|
||||
Version: 0.0.1
|
||||
Release: 1%{?dist}
|
||||
Summary: The recording-studio-in-a-box
|
||||
|
||||
Group: Applications/Multimedia
|
||||
License: GPLv2+
|
||||
URL: https://fedorahosted.org/anchorman/
|
||||
Source0: https://fedorahosted.org/released/anchorman/%{name}-%{version}.tar.gz
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
|
||||
BuildRequires: gstreamer-devel glib2-devel libgudev1-devel cmake
|
||||
Requires: gstreamer-plugins-good
|
||||
|
||||
%description
|
||||
Ever wanted to run your own recording studio? Need to handle multiple streams of
|
||||
audio, video, and possibly even subtitles? Anchorman can't do that. Yet.
|
||||
However, it can stream a webcam to an icecast server. Included is support for
|
||||
suspending/resuming the stream when the device is inserted/removed.
|
||||
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
|
||||
%build
|
||||
%cmake .
|
||||
make %{?_smp_mflags}
|
||||
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
make install DESTDIR=$RPM_BUILD_ROOT
|
||||
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%{_bindir}/anchorman
|
||||
%doc LICENSE README TODO
|
||||
|
||||
|
||||
%changelog
|
||||
* Wed Mar 22 2011 Trever Fischer <tdfischer@fedoraproject.org> - 0.0.1-1
|
||||
- Initial package of anchorman
|
||||
1
sources
1
sources
|
|
@ -0,0 +1 @@
|
|||
ba211b882225cec7a85923b0d626ef57 anchorman-0.0.1.tar.gz
|
||||
Reference in a new issue