]> git.pld-linux.org Git - packages/album.git/blob - album.spec
- version 1.44
[packages/album.git] / album.spec
1 %include        /usr/lib/rpm/macros.perl
2 Summary:        HTML photo album generator
3 Summary(pl):    Generator albumów fotograficznych w HTML
4 Name:           album
5 Version:        2.44
6 Release:        1
7 License:        distributable
8 Group:          Applications/Graphics
9 Source0:        http://marginalhacks.com/bin/%{name}.tar.gz
10 URL:            http://marginalhacks.com/Hacks/album/
11 BuildArch:      noarch
12 BuildRequires:  rpm-perlprov >= 3.0.3-18
13 Requires:       ImageMagick
14 %requires_eq    perl
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
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 -qc %{name}-%{version}
41 REAL_VERSION=`./album --version | awk '/album version/ { print $5 }'`
42 if [ "$REAL_VERSION" != "%{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},%{_datadir}/%{name}}
50
51 install album $RPM_BUILD_ROOT%{_bindir}
52 cp -R Themes $RPM_BUILD_ROOT%{_datadir}/%{name}
53
54 %clean
55 rm -rf $RPM_BUILD_ROOT
56
57 %files
58 %defattr(644,root,root,755)
59 %attr(755,root,root) %{_bindir}/*
60 %{_datadir}/%{name}
This page took 0.083863 seconds and 4 git commands to generate.