]> git.saurik.com Git - wxWidgets.git/blame - wxBase.spec
OS/2 updates (mostly executing MSW code)
[wxWidgets.git] / wxBase.spec
CommitLineData
2224580a
VZ
1# Note that this is NOT a relocatable package
2%define pref /usr
f6bcfd97 3%define ver 2.1.16
2224580a
VZ
4%define rel 0
5
6Summary: wxBase library - non-GUI support classes of wxWindows toolkit
7Name: wxBase
8Version: %{ver}
9Release: %{rel}
10Copyright: wxWindows Licence
11Group: Development/Libraries
12Source: wxBase-%{ver}.tar.gz
13URL: none
14Packager: Vadim Zeitlin <vadim@wxwindows.org>
15BuildRoot: /tmp/wxBase_rpm
16
17%description
18wxBase is a collection of C++ classes providing basic data structures (strings,
19lists, arrays), powerful wxDateTime class for date manipulations, portable
20wrappers around many OS-specific functions allowing to build the same program
21under all supported folders, wxThread class for writing multithreaded programs
22using either Win32 or POSIX threads and much more. wxBase currently supports
23the following platforms: Win32, generic Unix (Linux, FreeBSD, Solaris, HP-UX,
24...) and BeOS.
25
26%package devel
27Summary: wxBase headers needed for developping with wxBase
28Group: Development/Libraries
29Requires: wxBase
30
31%description devel
32Header files for wxBase. You need them to develop programs using wxBase.
33
34%prep
35%setup -n wxBase
103aab26 36./configure --prefix=%{pref} --disable-gui --disable-std_iostreams
2224580a
VZ
37
38%build
39if [ "$SMP" != "" ]; then
40 export MAKE="make -j$SMP"
41else
42 export MAKE="make"
43fi
44$MAKE
45
46%install
47rm -rf $RPM_BUILD_ROOT
48make prefix=$RPM_BUILD_ROOT%{pref} install
49
50%clean
51rm -rf $RPM_BUILD_ROOT
52
53%post
54/sbin/ldconfig
55
56%postun
57/sbin/ldconfig
58
59%files
60%defattr (644, root, root, 755)
61%doc COPYING.LIB INSTALL.txt LICENCE.txt README.txt SYMBOLS.txt TODO.txt
62%attr(755, -, -) %{pref}/lib/libwxbase*
63%dir %{pref}/lib/wx
64%dir %{pref}/lib/wx/include
65%dir %{pref}/lib/wx/include/wx
66%{pref}/lib/wx/include/wx/setup.h
67
68%files devel -f src/rpmfiles.lst
69%defattr (644, root, root, 755)
70%attr(755, -, -) %{pref}/bin/wx-config
71