diff --git a/.cvsignore b/.cvsignore deleted file mode 100644 index e69de29..0000000 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4e47f54 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +wavextract-1.0.0.tar.gz diff --git a/Makefile b/Makefile deleted file mode 100644 index 3de1330..0000000 --- a/Makefile +++ /dev/null @@ -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) diff --git a/sources b/sources index e69de29..8cd1b9e 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +d0987179afd5ec70a0c6d2f9bf5d4289 wavextract-1.0.0.tar.gz diff --git a/wavextract.spec b/wavextract.spec new file mode 100644 index 0000000..af887af --- /dev/null +++ b/wavextract.spec @@ -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 - 1.0.0-3 +- Add polish description and summary + +* Mon Dec 24 2007 Krzysztof Kurzawski - 1.0.0-2 +- Correct license tag +- Correct Source0 +- Correct BuildRoot + +* Mon Dec 24 2007 Krzysztof Kurzawski - 1.0.0-1 +- First release