]> git.pld-linux.org Git - packages/ClanLib.git/blob - ClanLib.spec
- rewrited by Konrad Stepień <kornad@interdata.com.pl>.
[packages/ClanLib.git] / ClanLib.spec
1 Summary:        ClanLib, the platform independent game SDK.
2 Summary(pl):    ClanLib, niezale¿ny od platformy SDK do gier
3 Name:           ClanLib
4 Version:        0.1.14
5 Release:        1
6 Copyright:      LGPL
7 Group:          Libraries
8 Group(pl):      Biblioteki
9 Source:         http://dark.x.dtu.dk/clansoft/clanlib/download/%{name}-%{version}.tgz
10 URL:            http://clanlib.org
11 BuildRoot:      /tmp/%{name}-%{version}-root
12
13 %description
14 The ClanLib SDK is designed to provide an platform independent game SDK using
15 a lot cleaner (and object oriented) interface than the traditional way it is
16 done in DirectX, SDL and such. The goals is to avoid game developers
17 constantly reinventing the wheel by providing smarter ways to eg. load
18 surfaces.
19
20 %description -l pl
21 ClanLib SDK jest projektowany jako niezale¿ny od platformy SDK dla gier.
22 Stosuje prosty (i zorienrowany obiektowo) interfejs, przejrzystszy ni¿
23 DirectX, SDL i inne.
24
25 %package devel
26 Summary:        ClanLib development paskage
27 Summary(pl):    pakiet programistyczny dla ClanLib
28 Group:          Development/Libraries
29 Group(pl):      Programowanie/Biblioteki
30
31 %description devel
32 This is the development add-on package that includes the header files needed
33 to compile new ClanLib applications.
34
35 %description -l pl devel
36 Programistyczne dodatki do ClanLib-a, zawieraj± pliki nag³ówkowe potrzebne
37 do kompilacji programów korzystaj±cych z CleanLib.
38
39 %prep
40 %setup -n ClanLib
41 %build
42 CFLAGS="$RPM_OPT_FLAGS" ./configure -prefix=/usr
43 make
44 for i in *.so *.a
45 do
46   strip $i
47 done
48
49 %install
50 make    LIB_PREFIX="$RPM_BUILD_ROOT/usr/lib" \
51         BIN_PREFIX="$RPM_BUILD_ROOT/usr/bin" \
52         INC_PREFIX="$RPM_BUILD_ROOT/usr/include" \
53         install
54
55 %clean
56 rm -rf $RPM_BUILD_ROOT
57
58 %post
59 /sbin/ldconfig
60
61 %postun
62 /sbin/ldconfig
63
64 %files
65 %defattr(644,root,root,755)
66 %doc README TODO CREDITS
67 %attr(755,root,root) /usr/lib/*
68
69 %files devel
70 %defattr(644,root,root,755)
71 %attr(755,root,root) /usr/bin/datafile_compiler
72 /usr/include/ClanLib
73
74 %changelog
75
76 * Mon Apr 19 1999 Konrad Stepieñ <kornad@interdata.com.pl>
77 - initial version
This page took 0.066232 seconds and 4 git commands to generate.