Tizen 2.0 Release
[apps/core/preloaded/gnome-common.git] / packaging / gnome-common.spec
1
2 Name:       gnome-common
3 Summary:    Useful things common to building gnome packages from scratch
4 Version:    2.28.0
5 Release:    1
6 Group:      Development/Tools
7 License:    GPLv2
8 URL:        http://developer.gnome.org
9 Source0:    http://ftp.gnome.org/pub/GNOME/sources/%{name}/2.28/%{name}-%{version}.tar.bz2
10 Requires:   pkgconfig
11 BuildRequires:  pkgconfig
12
13 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
14
15 %description
16 This package contains sample files that should be used to develop pretty much
17 every GNOME application.  The programs included here are not needed for running
18 gnome apps or building ones from distributed tarballs.  They are only useful
19 for compiling from CVS sources or when developing the build infrastructure for
20 a GNOME application.
21
22
23
24
25 %prep
26 %setup -q -n %{name}-%{version}
27
28 %build
29
30 %configure --disable-static
31 # Call make instruction with smp support
32 make %{?jobs:-j%jobs}
33
34 %install
35 rm -rf %{buildroot}
36 %make_install
37
38
39 %clean
40 rm -rf %{buildroot}
41
42
43
44
45
46
47 %files
48 %defattr(-,root,root,-)
49 %doc README COPYING  ChangeLog
50 %{_bindir}/*
51 %{_datadir}/aclocal/*
52 %{_datadir}/%{name}
53
54