]> git.pld-linux.org Git - packages/easygtk.git/blame_incremental - easygtk.spec
- converted to UTF-8
[packages/easygtk.git] / easygtk.spec
... / ...
CommitLineData
1Summary: EasyGTK - GTK+ wrapper library
2Summary(pl.UTF-8): EasyGTK - nadzbiór funkcji GTK+
3Name: easygtk
4Version: 1.2
5Release: 1
6License: GPL
7Group: Libraries
8Source0: %{name}-%{version}.tar
9# Source0-md5: 04bf9844bed30d34c6e6cb6416cadced
10Patch0: %{name}-Makefile.patch
11BuildRequires: ImageMagick-devel
12BuildRequires: XFree86-devel
13BuildRequires: giflib-devel
14BuildRequires: glib-devel
15BuildRequires: gtk+-devel
16BuildRequires: imlib-devel
17BuildRequires: libjpeg-devel
18BuildRequires: libtiff-devel
19BuildRequires: zlib-devel
20BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
21
22%description
23EasyGTK is a wrapper library around GTK+ library to provide a much
24easier and simplier Application Programming Interface to the
25developer.
26
27%description -l pl.UTF-8
28EasyGTK jest nadzbiorem funkcji GTK+ pozwalającym na szybsze i
29łatwiejsze tworzenie aplikacji używających Graficznego Interfejsu
30Użytkownika.
31
32%prep
33%setup -q -n %{name}
34%patch
35
36%build
37./configure
38%{__make} RPM_OPT_FLAGS="%{rpmcflags}"
39
40# make shared library
41%{__make} easygtk.so
42
43%install
44rm -rf $RPM_BUILD_ROOT
45install -d $RPM_BUILD_ROOT{%{_libdir},%{_includedir}}
46
47install libeasygtk.a $RPM_BUILD_ROOT%{_libdir}
48install easygtk.so $RPM_BUILD_ROOT%{_libdir}/libeasygtk.so.%{version}
49install easygtk.h $RPM_BUILD_ROOT%{_includedir}
50
51%clean
52rm -rf $RPM_BUILD_ROOT
53
54%post -p /sbin/ldconfig
55%postun -p /sbin/ldconfig
56
57%files
58%defattr(644,root,root,755)
59%doc manual.html README example.c testtree.c
60%attr(755,root,root) %{_libdir}/libeasygtk.so.%{version}
61%{_libdir}/libeasygtk.a
62%{_includedir}/easygtk.h
This page took 0.086437 seconds and 4 git commands to generate.