]> git.pld-linux.org Git - packages/album.git/blob - album.spec
- 4.05
[packages/album.git] / album.spec
1 %include        /usr/lib/rpm/macros.perl
2 Summary:        HTML photo album generator
3 Summary(pl.UTF-8):      Generator albumów fotograficznych w HTML-u
4 Name:           album
5 Version:        4.05
6 Release:        1
7 License:        distributable
8 Group:          Applications/Graphics
9 Source0:        http://marginalhacks.com/bin/%{name}.tar.gz
10 # Source0-md5:  a930bee2eb3b8ced3c3a8e9083056a57
11 URL:            http://marginalhacks.com/Hacks/album/
12 BuildRequires:  rpm-perlprov >= 3.0.3-18
13 Requires:       ImageMagick
14 BuildArch:      noarch
15 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17 %description
18 An HTML photo album generator that supports themes. It takes a
19 directory of images and creates all the thumbnails and HTML that you
20 need. It's fast, easy to use, and very powerful.
21 Features:
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
27 Generator albumów fotograficznych z obsługą motywów. Przyjmuje katalog
28 ze zdjęciami i tworzy wszystkie potrzebne miniaturki oraz pliki HTML.
29 Jest szybki, prosty w użyciu i ma duże możliwości.
30 Moż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
39 REAL_VERSION=`./album --version 2>&1 | grep '^This' | awk '/This\ is\ album/ { print $4 }'`
40 if [ "$REAL_VERSION" != "v%{version}" ] ; then
41         echo "Package/Source version mismatch!"
42         exit 1
43 fi
44
45 %install
46 rm -rf $RPM_BUILD_ROOT
47 install -d $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man1}
48
49 install album $RPM_BUILD_ROOT%{_bindir}
50 install album.1 $RPM_BUILD_ROOT%{_mandir}/man1
51
52 %clean
53 rm -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.025284 seconds and 4 git commands to generate.