]> git.pld-linux.org Git - packages/gegl.git/blob - gegl.spec
- pl
[packages/gegl.git] / gegl.spec
1 Summary:        Generic image processing library
2 Summary(pl.UTF-8):      Ogólna biblioteka przetwarzania obrazu
3 Name:           gegl
4 Version:        0.0.12
5 Release:        1
6 License:        LGPL v2+
7 Group:          Libraries
8 Source0:        ftp://ftp.gtk.org/pub/gegl/0.0/%{name}-%{version}.tar.bz2
9 # Source0-md5:  dda7513cb4ab4b62528a9822e5c5751b
10 Patch0:         %{name}-build.patch
11 URL:            http://www.gegl.org/
12 BuildRequires:  OpenEXR-devel
13 BuildRequires:  autoconf
14 BuildRequires:  automake
15 BuildRequires:  babl-devel
16 BuildRequires:  cairo-devel
17 BuildRequires:  glib2-devel
18 BuildRequires:  gtk+2-devel
19 BuildRequires:  libjpeg-devel
20 BuildRequires:  libpng-devel
21 BuildRequires:  librsvg-devel
22 BuildRequires:  pango-devel
23 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
24
25 %description
26 GEGL (Generic Graphics Library) is a graph based image processing
27 framework.
28
29 GEGL's original design was made to scratch GIMP's itches for a new
30 compositing and processing core. This core is being designed to have
31 minimal dependencies and a simple well defined API.
32
33 %description -l pl.UTF-8
34 GEGL (Generic Graphics Library) to oparty na grafice szkielet do
35 przetwarzania obrazu.
36
37 Pierwotny projekt biblioteki GEGL powstał z myślą o nowym rdzeniu do
38 składania i przetwarzania obrazu w GIMP-ie. Rdzeń ten jest
39 projektowany tak, by miał minimalne zależności i proste, dobrze
40 zdefiniowane API.
41
42 %package devel
43 Summary:        Header files for gegl library
44 Summary(pl.UTF-8):      Pliki nagłówkowe biblioteki gegl
45 Group:          Development/Libraries
46 Requires:       %{name} = %{version}-%{release}
47
48 %description devel
49 Header files for gegl library.
50
51 %description devel -l pl.UTF-8
52 Pliki nagłówkowe biblioteki gegl.
53
54 %package static
55 Summary:        Static gegl library
56 Summary(pl.UTF-8):      Statyczna biblioteka gegl
57 Group:          Development/Libraries
58 Requires:       %{name}-devel = %{version}-%{release}
59
60 %description static
61 Static gegl library.
62
63 %description static -l pl.UTF-8
64 Statyczna biblioteka gegl.
65
66 %prep
67 %setup -q
68 %patch0 -p1
69
70 %build
71 %{__aclocal}
72 %{__autoconf}
73 %{__automake}
74 %configure
75 %{__make}
76
77 %install
78 rm -rf $RPM_BUILD_ROOT
79
80 %{__make} install \
81         DESTDIR=$RPM_BUILD_ROOT
82
83 %clean
84 rm -rf $RPM_BUILD_ROOT
85
86 %post   -p /sbin/ldconfig
87 %postun -p /sbin/ldconfig
88
89 %files
90 %defattr(644,root,root,755)
91 %doc AUTHORS ChangeLog NEWS README
92 %attr(755,root,root) %{_bindir}/gegl
93 %attr(755,root,root) %{_libdir}/libgegl-*.so.*.*.*
94 %dir %{_libdir}/gegl-*
95 %attr(755,root,root) %{_libdir}/gegl-*/*.so
96
97 %files devel
98 %defattr(644,root,root,755)
99 %attr(755,root,root) %{_libdir}/libgegl-*.so
100 %{_libdir}/libgegl-*.la
101 %{_includedir}/gegl-*
102 %{_pkgconfigdir}/gegl.pc
103
104 %files static
105 %defattr(644,root,root,755)
106 %{_libdir}/libgegl-1.0.a
This page took 0.048602 seconds and 3 git commands to generate.