Compare commits

...
Sign in to create a new pull request.

4 commits

Author SHA1 Message Date
Fedora Release Engineering
001ad5073b dist-git conversion 2010-07-29 15:12:56 +00:00
Bill Nottingham
d7849d52d7 Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-26 01:15:24 +00:00
Krzysztof Kurzawski
2dff48d83e import wavextract 1.0.0 2008-01-26 13:59:50 +00:00
5f9a0ab610 Initialize branch F-7 for wavextract 2008-01-25 19:50:51 +00:00
5 changed files with 51 additions and 21 deletions

View file

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
wavextract-1.0.0.tar.gz

View file

@ -1,21 +0,0 @@
# Makefile for source rpm: wavextract
# $Id$
NAME := wavextract
SPECFILE = $(firstword $(wildcard *.spec))
define find-makefile-common
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
endef
MAKEFILE_COMMON := $(shell $(find-makefile-common))
ifeq ($(MAKEFILE_COMMON),)
# attept a checkout
define checkout-makefile-common
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
endef
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
endif
include $(MAKEFILE_COMMON)

View file

@ -0,0 +1 @@
d0987179afd5ec70a0c6d2f9bf5d4289 wavextract-1.0.0.tar.gz

49
wavextract.spec Normal file
View file

@ -0,0 +1,49 @@
Name: wavextract
Version: 1.0.0
Release: 3%{?dist}
Summary: Program for extracting embedded audio data from JPEG images
Summary(pl): Program do wyciągania zagnieżdżonych danych audio z plików JPEG
Group: Applications/Multimedia
License: GPLv2+
URL: http://developer.berlios.de/projects/wavextract
Source0: http://download.berlios.de/wavextract/%name-%version.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch: noarch
Requires: python python-imaging
%description
Program for extracting embedded audio data from JPEG images.
%description -l pl
Program do wyciągania zagnieżdżonych danych audio z plików JPEG.
%prep
%setup -qn %{name}
%build
#nothing to build
%install
rm -rf $RPM_BUILD_ROOT
mkdir -p $RPM_BUILD_ROOT%{_bindir}
cp %{name} $RPM_BUILD_ROOT%{_bindir}/%{name}
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%doc README COPYING
%{_bindir}/%{name}
%changelog
* Sat Jan 26 2008 Krzysztof Kurzawski <kurzawax at gmail.com> - 1.0.0-3
- Add polish description and summary
* Mon Dec 24 2007 Krzysztof Kurzawski <kurzawax at gmail.com> - 1.0.0-2
- Correct license tag
- Correct Source0
- Correct BuildRoot
* Mon Dec 24 2007 Krzysztof Kurzawski <kurzawax at gmail.com> - 1.0.0-1
- First release