]> git.pld-linux.org Git - packages/album.git/blob - album.spec
- drop obsolete and outdated manual inclusion of rpm macros
[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.07
6 Release:        1
7 License:        distributable
8 Group:          Applications/Graphics
9 Source0:        http://marginalhacks.com/bin/%{name}.tar.gz
10 # Source0-md5:  f607cb16da7c24b4deadb41bcb434fdc
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
22 Features:
23 - You can use themes to choose or redesign the album "look and feel."
24 - Recursively descends directories to make a hierarchy of photo albums
25 - Maintains aspect ratio while constraining size of thumbnails
26
27 %description -l pl.UTF-8
28 Generator albumów fotograficznych z obsługą motywów. Przyjmuje katalog
29 ze zdjęciami i tworzy wszystkie potrzebne miniaturki oraz pliki HTML.
30 Jest szybki, prosty w użyciu i ma duże możliwości.
31
32 Możliwości:
33 - pozwala na używanie motywów do wybrania lub zmiany "look and feel"
34   albumu
35 - rekurencyjnie przegląda katalogi tworząc hierarchię albumów
36   fotograficznych
37 - zachowuje proporcje przy ograniczaniu rozmiaru miniaturek.
38
39 %prep
40 %setup -q
41 REAL_VERSION=`./album --version 2>&1 | grep '^This' | awk '/This\ is\ album/ { print $4 }'`
42 if [ "$REAL_VERSION" != "v%{version}" ] ; then
43         echo "Package/Source version mismatch!"
44         exit 1
45 fi
46
47 %install
48 rm -rf $RPM_BUILD_ROOT
49 install -d $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man1}
50
51 install album $RPM_BUILD_ROOT%{_bindir}
52 install album.1 $RPM_BUILD_ROOT%{_mandir}/man1
53
54 %clean
55 rm -rf $RPM_BUILD_ROOT
56
57 %files
58 %defattr(644,root,root,755)
59 %doc Docs/* License.txt
60 %attr(755,root,root) %{_bindir}/album
61 %{_mandir}/man1/album.1*
This page took 0.071473 seconds and 3 git commands to generate.