]> git.pld-linux.org Git - SPECS.git/blob - libuta.spec
SPECS updated Sun 1 Aug 20:28:02 CEST 2021
[SPECS.git] / libuta.spec
1 Summary:        libuta - a C++ multimedia framework
2 Summary(pl.UTF-8):      libuta - środowisko multimedialne do C++
3 Name:           libuta
4 Version:        0.4.4
5 Release:        1
6 License:        LGPL
7 Group:          Libraries
8 Source0:        ftp://victor.worldforge.org/pub/worldforge/libs/libuta/%{name}-%{version}.tar.gz
9 # Source0-md5:  06607ef03d84d607d4a1a1592f815eaf
10 Patch0:         %{name}-missing_assert_h.patch
11 BuildRequires:  autoconf
12 BuildRequires:  automake
13 BuildRequires:  libtool
14 BuildRequires:  smpeg-devel
15 BuildRequires:  SDL_mixer-devel
16 BuildRequires:  libpng-devel
17 BuildRequires:  freetype1-devel
18 BuildRequires:  libsigc++1-devel
19 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
20
21 %description
22 libuta is C++ library which provides a framework for creating
23 multimedia applications, especially games. It runs on top of SDL and
24 is available for Win32 and Linux/X11.
25
26 %description -l pl.UTF-8
27 libuta jest biblioteką C++ dającą środowisko do tworzenia aplikacji
28 multimedialnych, zwłaszcza gier. Opiera się na SDL i jest dostępna pod
29 Win32 i Linuksa/X11.
30
31 %package devel
32 Summary:        Header files for libuta development
33 Summary(pl.UTF-8):      Pliki nagłówkowe do tworzenia programów z użyciem libuta
34 Group:          Development/Libraries
35 Requires:       %{name} = %{version}-%{release}
36 Requires:       smpeg-devel
37 Requires:       SDL_mixer-devel
38 Requires:       libpng-devel
39 Requires:       freetype1-devel
40 Requires:       libsigc++1-devel
41
42 %description devel
43 libuta is C++ library which provides a framework for creating
44 multimedia applications, especially games. It runs on top of SDL and
45 is available for Win32 and Linux/X11.
46
47 This package contains the header files needed to develop programs that
48 use these libuta.
49
50 %description devel -l pl.UTF-8
51 libuta jest biblioteką C++ dającą środowisko do tworzenia aplikacji
52 multimedialnych, zwłaszcza gier. Opiera się na SDL i jest dostępna pod
53 Win32 i Linuksa/X11.
54
55 Ten pakiet zawiera pliki nagłówkowe potrzebne do tworzenia programów z
56 użyciem biblioteki libuta.
57
58 %package static
59 Summary:        Static libraries for libuta development
60 Summary(pl.UTF-8):      Statyczne biblioteki libuta
61 Group:          Development/Libraries
62 Requires:       %{name}-devel = %{version}-%{release}
63
64 %description static
65 libuta is C++ library which provides a framework for creating
66 multimedia applications, especially games. It runs on top of SDL and
67 is available for Win32 and Linux/X11.
68
69 This package contains the static libuta.
70
71 %description static -l pl.UTF-8
72 libuta jest biblioteką C++ dającą środowisko do tworzenia aplikacji
73 multimedialnych, zwłaszcza gier. Opiera się na SDL i jest dostępna pod
74 Win32 i Linuksa/X11.
75
76 Ten pakiet zawiera statyczną bibliotekę libuta.
77
78 %prep
79 %setup -q
80 %patch0
81
82 %build
83 rm -f missing
84 %{__libtoolize}
85 %{__aclocal}
86 %{__autoheader}
87 %{__autoconf}
88 %{__automake}
89 %configure
90 %{__make}
91
92 %install
93 rm -rf $RPM_BUILD_ROOT
94
95 %{__make} install \
96         DESTDIR=$RPM_BUILD_ROOT
97
98 %clean
99 rm -rf $RPM_BUILD_ROOT
100
101 %post   -p /sbin/ldconfig
102 %postun -p /sbin/ldconfig
103
104 %files
105 %defattr(644,root,root,755)
106 %doc AUTHORS BUGS ChangeLog README TODO
107 %attr(755,root,root) %{_libdir}/lib*.so.*.*
108
109 %files devel
110 %defattr(644,root,root,755)
111 %attr(755,root,root) %{_bindir}/uta-config
112 %{_includedir}/uta
113 %{_libdir}/*.la
114 %{_libdir}/*.so
115 %{_aclocaldir}/uta.m4
116
117 %files static
118 %defattr(644,root,root,755)
119 %{_libdir}/*.a
This page took 0.498197 seconds and 3 git commands to generate.