]> git.pld-linux.org Git - packages/gdl.git/blame_incremental - gdl.spec
- tabs in preamble
[packages/gdl.git] / gdl.spec
... / ...
CommitLineData
1Summary: GNOME Devtool Libraries
2Summary(pl.UTF-8): Biblioteki GNOME Devtool
3Name: gdl
4Version: 0.7.1
5Release: 1
6License: GPL
7Group: Libraries
8Source0: http://ftp.gnome.org/pub/gnome/sources/gdl/0.7/%{name}-%{version}.tar.bz2
9# Source0-md5: 5f3e065d4fcafc072b12e19e855c2fa1
10BuildRequires: autoconf
11BuildRequires: automake
12BuildRequires: gettext-devel
13BuildRequires: gnome-common >= 2.12.0
14BuildRequires: intltool
15BuildRequires: libbonoboui-devel >= 2.16.0
16BuildRequires: libglade2-devel >= 1:2.6.0
17BuildRequires: libgnomeui-devel >= 2.16.1
18BuildRequires: libtool
19BuildRequires: pkgconfig
20BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
21
22%description
23This package contains components and libraries that are intended to be
24shared between GNOME development tools, including gnome-debug,
25gnome-build, and anjuta2. The current pieces of GDL include: a symbol
26browser bonobo component (symbol-browser-control), a docking widget
27(gdl), a utility library that also contains the stubs and skels for
28the symbol browser and text editor components (gdl, idl).
29
30%description -l pl.UTF-8
31Ten pakiet zawiera komponenty i biblioteki zaprojektowane jako wspólne
32dla różnych narzędzi programistycznych GNOME, takich jak: gnome-debug,
33gnome-build i anjuta2. Aktualnie GDL zawiera: przeglądarkę symboli
34jako komponent bonobo (symbol-browser-control), dokowany element
35interfejsu graficznego (gdl), bibliotekę narzędzi zawierającą także
36szkielety dla przeglądarki symboli i komponentów edytora tekstu (gdl,
37idl).
38
39%package devel
40Summary: Header files for gdl development
41Summary(pl.UTF-8): Pliki nagłówkowe do biblioteki gdl
42Group: Development/Libraries
43Requires: %{name} = %{version}-%{release}
44
45%description devel
46This package contains the header files needed to develop programs that
47use these gdl.
48
49%description devel -l pl.UTF-8
50Pakiet zawiera pliki nagłówkowe niezbędne do kompilowania programów
51używających bibliotek gdl.
52
53%package static
54Summary: Static libraries for gdl development
55Summary(pl.UTF-8): Statyczne biblioteki gdl
56Group: Development/Libraries
57Requires: %{name}-devel = %{version}-%{release}
58
59%description static
60This package contains the static gdl libraries.
61
62%description static -l pl.UTF-8
63Pakiet zawiera statyczne biblioteki gdl.
64
65%prep
66%setup -q
67
68%build
69%{__glib_gettextize}
70%{__intltoolize}
71%{__libtoolize}
72%{__aclocal}
73%{__autoconf}
74%{__automake}
75%configure \
76 --enable-static
77
78%{__make}
79
80%install
81rm -rf $RPM_BUILD_ROOT
82
83%{__make} install \
84 DESTDIR=$RPM_BUILD_ROOT
85
86%find_lang %{name}-1 --with-gnome
87
88%clean
89rm -rf $RPM_BUILD_ROOT
90
91%post -p /sbin/ldconfig
92%postun -p /sbin/ldconfig
93
94%files -f %{name}-1.lang
95%defattr(644,root,root,755)
96%doc AUTHORS ChangeLog NEWS README
97%attr(755,root,root) %{_libdir}/lib*.so.*.*.*
98%{_datadir}/gdl
99
100%files devel
101%defattr(644,root,root,755)
102%{_includedir}/libgdl-1.0
103%{_libdir}/lib*.la
104%attr(755,root,root) %{_libdir}/lib*.so
105%{_pkgconfigdir}/*.pc
106
107%files static
108%defattr(644,root,root,755)
109%{_libdir}/lib*.a
This page took 0.04177 seconds and 4 git commands to generate.