]> git.pld-linux.org Git - packages/compface.git/blob - compface.spec
- updated URLs
[packages/compface.git] / compface.spec
1 # TODO
2 # - devel collides with faces-devel
3 Summary:        Image from/to X-Face conversion utilities
4 Summary(pl.UTF-8):      Narzędzia do konwersji obrazu z/do formatu X-Face
5 Name:           compface
6 Version:        1.5.2
7 Release:        3
8 Epoch:          1
9 License:        MIT
10 Group:          Applications/Graphics
11 Source0:        http://freshmeat.net/redir/compface/1439/url_tgz/%{name}-%{version}.tar.gz
12 # Source0-md5:  62f4f79c0861ad292ba3cf77b4c48319
13 BuildRequires:  autoconf
14 BuildRequires:  automake
15 BuildRequires:  libtool
16 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
17
18 %description
19 Compface provides utilities to convert from/to X-Face format, a 48x48
20 bitmap format used to carry thumbnails of email authors in a mail
21 header.
22
23 %description -l pl.UTF-8
24 Compface to para narzędzi służących do konwersji z i do formatu
25 X-Face. Format ten służy do przechowywania bitmap o wymiarach 48x48
26 pikseli, które można przekazywać w nagłówkach listów elektronicznych
27 czy postach na grupy dyskusyjne.
28
29 %package devel
30 Summary:        Image from/to X-Face conversion libraries
31 Summary(pl.UTF-8):      Biblioteki do konwersji obrazu z/do formatu X-Face
32 Group:          Development/Libraries
33
34 %description devel
35 Compface provides a library to convert from/to X-Face format, a 48x48
36 bitmap format used to carry thumbnails of email authors in a mail
37 header.
38
39 %description devel -l pl.UTF-8
40 Biblioteka służąca do konwersji z i do formatu X-Face. Format ten
41 służy do przechowywania bitmap o wymiarach 48x48 pikseli, które można
42 przekazywać w nagłówkach listów elektronicznych czy postach na grupy
43 dyskusyjne.
44
45 %prep
46 %setup -q
47
48 %build
49 %{__libtoolize}
50 %{__aclocal}
51 %{__autoconf}
52 %configure
53 %{__make}
54
55 %install
56 rm -rf $RPM_BUILD_ROOT
57 install -d $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/{man1,man3},%{_libdir},%{_includedir}}
58
59 install compface $RPM_BUILD_ROOT%{_bindir}
60 install uncompface $RPM_BUILD_ROOT%{_bindir}
61 install compface.1 $RPM_BUILD_ROOT%{_mandir}/man1
62 install compface.3 $RPM_BUILD_ROOT%{_mandir}/man3
63 install libcompface.a $RPM_BUILD_ROOT%{_libdir}
64 install compface.h $RPM_BUILD_ROOT%{_includedir}
65
66 %clean
67 rm -rf $RPM_BUILD_ROOT
68
69 %files
70 %defattr(644,root,root,755)
71 %doc README ChangeLog
72 %attr(755,root,root) %{_bindir}/*
73 %{_mandir}/man1/compface.1*
74
75 %files devel
76 %defattr(644,root,root,755)
77 %{_libdir}/libcompface.a
78 %{_includedir}/compface.h
79 %{_mandir}/man3/compface.3*
This page took 0.05068 seconds and 3 git commands to generate.