]> git.pld-linux.org Git - packages/compface.git/blob - compface.spec
- massive attack: adding Source-md5
[packages/compface.git] / compface.spec
1 Summary:        Image from/to X-Face conversion utilities
2 Summary(pl):    Narzêdzia do konwersji obrazu z/do formatu X-Face
3 Name:           compface
4 Version:        1.4
5 Release:        2
6 Epoch:          1
7 License:        MIT
8 Group:          Applications/Graphics
9 Source0:        http://metalab.unc.edu/pub/Linux/apps/graphics/convert/%{name}-%{version}.tar.gz
10 # Source0-md5:  c45b54f67cc5d3580a18e4113219bc26
11 Patch0:         %{name}-errno.patch
12 BuildRequires:  autoconf
13 BuildRequires:  automake
14 BuildRequires:  libtool
15 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17 %description
18 Compface provides utilities to convert from/to X-Face format, a 48x48
19 bitmap format used to carry thumbnails of email authors in a mail
20 header.
21
22 %description -l pl
23 Compface to para narzêdzi s³u¿±cych do konwersji z i do formatu
24 X-Face. Format ten s³u¿y do przechowywania bitmap o wymiarach 48x48
25 pikseli, które mo¿na przekazywaæ w nag³ówkach listów elektronicznych
26 czy postach na grupy dyskusyjne.
27
28 %package devel
29 Summary:        Image from/to X-Face conversion libraries
30 Summary(pl):    Biblioteki do konwersji obrazu z/do formatu X-Face
31 Group:          Development/Libraries
32
33 %description devel
34 Compface provides a library to convert from/to X-Face format, a 48x48
35 bitmap format used to carry thumbnails of email authors in a mail
36 header.
37
38 %description devel -l pl
39 Biblioteka s³u¿±ca do konwersji z i do formatu X-Face. Format ten
40 s³u¿y do przechowywania bitmap o wymiarach 48x48 pikseli, które mo¿na
41 przekazywaæ w nag³ówkach listów elektronicznych czy postach na grupy
42 dyskusyjne.
43
44 %prep
45 %setup -q
46 %patch0 -p1
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 %post   devel -p /sbin/ldconfig
70 %postun devel -p /sbin/ldconfig
71
72 %files
73 %defattr(644,root,root,755)
74 %doc README ChangeLog
75 %attr(755,root,root) %{_bindir}/*
76 %{_mandir}/man1/compface.1*
77
78 %files devel
79 %defattr(644,root,root,755)
80 %{_libdir}/libcompface.a
81 %{_includedir}/compface.h
82 %{_mandir}/man3/compface.3*
This page took 0.086989 seconds and 3 git commands to generate.