]> git.pld-linux.org Git - packages/album.git/blob - album.spec
- massive attack: adding Source-md5
[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 # Source0-md5:  a8552d5428caf1f63552649fb57954ad
11 URL:            http://marginalhacks.com/Hacks/album/
12 BuildArch:      noarch
13 BuildRequires:  rpm-perlprov >= 3.0.3-18
14 Requires:       ImageMagick
15 %requires_eq    perl
16 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
17
18 %description
19 An HTML photo album generator that supports themes. It takes a
20 directory of images and creates all the thumbnails and HTML that you
21 need. It's fast, easy to use, and very powerful.
22
23 Features:
24     - You can use themes to choose or redesign the album "look and feel."
25     - Recursively descends directories to make a hierarchy of photo albums
26     - Maintains aspect ratio while constraining size of thumbnails
27
28 %description -l pl
29 Generator albumów fotograficznych z obs³ug± motywów. Przyjmuje katalog
30 ze zdjêciami i tworzy wszystkie potrzebne miniaturki oraz pliki HTML.
31 Jest szybki, prosty w u¿yciu i ma du¿e mo¿liwo¶ci.
32
33 Mo¿liwo¶ci:
34  - pozwala na u¿ywanie motywów do wybrania lub zmiany "look and feel"
35    albumu
36  - rekurencyjnie przegl±da katalogi tworz±c hierarchiê albumów
37    fotograficznych
38  - zachowuje proporcje przy ograniczaniu rozmiaru miniaturek.
39
40 %prep
41 %setup -qc %{name}-%{version}
42 REAL_VERSION=`./album --version | awk '/album version/ { print $5 }'`
43 if [ "$REAL_VERSION" != "%{version}" ] ; then
44         echo "Package/Source version mismatch!"
45         exit 1
46 fi
47
48 %install
49 rm -rf $RPM_BUILD_ROOT
50 install -d $RPM_BUILD_ROOT{%{_bindir},%{_datadir}/%{name}}
51
52 install album $RPM_BUILD_ROOT%{_bindir}
53 cp -R Themes $RPM_BUILD_ROOT%{_datadir}/%{name}
54
55 %clean
56 rm -rf $RPM_BUILD_ROOT
57
58 %files
59 %defattr(644,root,root,755)
60 %attr(755,root,root) %{_bindir}/*
61 %{_datadir}/%{name}
This page took 0.030308 seconds and 4 git commands to generate.