]> git.pld-linux.org Git - packages/album.git/blame_incremental - album.spec
- tabs in preamble
[packages/album.git] / album.spec
... / ...
CommitLineData
1%include /usr/lib/rpm/macros.perl
2Summary: HTML photo album generator
3Summary(pl.UTF-8): Generator albumów fotograficznych w HTML-u
4Name: album
5Version: 3.11
6Release: 1
7License: distributable
8Group: Applications/Graphics
9Source0: http://marginalhacks.com/bin/%{name}.tar.gz
10# Source0-md5: b146bbbe040b147fdb608ae076eef635
11URL: http://marginalhacks.com/Hacks/album/
12BuildRequires: rpm-perlprov >= 3.0.3-18
13Requires: ImageMagick
14BuildArch: noarch
15BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17%description
18An HTML photo album generator that supports themes. It takes a
19directory of images and creates all the thumbnails and HTML that you
20need. It's fast, easy to use, and very powerful.
21Features:
22- You can use themes to choose or redesign the album "look and feel."
23- Recursively descends directories to make a hierarchy of photo albums
24- Maintains aspect ratio while constraining size of thumbnails
25
26%description -l pl.UTF-8
27Generator albumów fotograficznych z obsługą motywów. Przyjmuje katalog
28ze zdjęciami i tworzy wszystkie potrzebne miniaturki oraz pliki HTML.
29Jest szybki, prosty w użyciu i ma duże możliwości.
30Możliwości:
31- pozwala na używanie motywów do wybrania lub zmiany "look and feel"
32 albumu
33- rekurencyjnie przegląda katalogi tworząc hierarchię albumów
34 fotograficznych
35- zachowuje proporcje przy ograniczaniu rozmiaru miniaturek.
36
37%prep
38%setup -q
39REAL_VERSION=`./album --version 2>&1 | grep '^This' | awk '/This\ is\ album/ { print $4 }'`
40if [ "$REAL_VERSION" != "v%{version}" ] ; then
41 echo "Package/Source version mismatch!"
42 exit 1
43fi
44
45%install
46rm -rf $RPM_BUILD_ROOT
47install -d $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man1}
48
49install album $RPM_BUILD_ROOT%{_bindir}
50install album.1 $RPM_BUILD_ROOT%{_mandir}/man1
51
52%clean
53rm -rf $RPM_BUILD_ROOT
54
55%files
56%defattr(644,root,root,755)
57%doc Docs/* License.txt
58%attr(755,root,root) %{_bindir}/*
59%{_mandir}/man1/%{name}.1*
This page took 0.063479 seconds and 4 git commands to generate.