Compare commits
4 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b43d2514f0 | ||
|
|
4601e6ce5b | ||
|
|
aac01d3eb6 | ||
| d82d15ca56 |
5 changed files with 51 additions and 21 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
wavextract-1.0.0.tar.gz
|
||||||
21
Makefile
21
Makefile
|
|
@ -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)
|
|
||||||
1
sources
1
sources
|
|
@ -0,0 +1 @@
|
||||||
|
d0987179afd5ec70a0c6d2f9bf5d4289 wavextract-1.0.0.tar.gz
|
||||||
49
wavextract.spec
Normal file
49
wavextract.spec
Normal 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
|
||||||
Loading…
Add table
Add a link
Reference in a new issue