"Fossies" - the Fresh Open Source Software Archive 
Member "gtkdatabox-1.0.0/gtkdatabox.spec.in" (31 Mar 2021, 1317 Bytes) of package /linux/privat/gtkdatabox-1.0.0.tar.gz:
As a special service "Fossies" has tried to format the requested text file into HTML format (style:
standard) with prefixed line numbers.
Alternatively you can here
view or
download the uninterpreted source code file.
See also the latest
Fossies "Diffs" side-by-side code changes report for "gtkdatabox.spec.in":
0.9.3.1_vs_1.0.0.
1 Summary: GTK+ widget for fast data display
2 Name: gtkdatabox
3 Version: @DATABOX_VERSION@
4 Release: 1
5 License: LGPL
6 Group: System Environment/Libraries
7 URL: http://www.eudoxos.net/gtk/gtkdatabox/
8 Source: %{name}-%{version}.tar.gz
9 BuildRoot: %{_tmppath}/%{name}-%{version}-root
10
11 Requires: gtk3
12 BuildRequires: gtk3-devel
13
14 %description
15 GtkDatabox is a widget for the GTK+ library designed to display
16 large amounts of numerical data fast and easy.
17
18 %package devel
19 Summary: Development headers and libraries for gtkdatabox
20 Group: Development/Libraries
21 Requires: gtkdatabox = %{version}, gtk3-devel, pkgconfig
22
23 %description devel
24 The development headers and libraries needed to develop
25 applications which use the gtkdatabox widget.
26
27 %prep
28 %setup -q
29
30 %build
31 %configure
32 make %{?_smp_mflags}
33
34 %install
35 rm -rf $RPM_BUILD_ROOT
36 make DESTDIR=$RPM_BUILD_ROOT install
37 rm -f $RPM_BUILD_ROOT%{_libdir}/*.a
38 rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
39
40 %clean
41 rm -rf $RPM_BUILD_ROOT
42
43 %files
44 %defattr(-,root,root)
45 %doc AUTHORS ChangeLog COPYING INSTALL NEWS README TODO
46 %{_libdir}/*.so*
47
48 %files devel
49 %defattr(-,root,root)
50 %{_includedir}/*.h
51 %{_libdir}/pkgconfig/*.pc
52
53 %changelog
54 * Sat Jan 28 2006 Eric Work <work.eric@gmail.com>
55 - Initial release
56 * Wed Mar 08 2006 Roland Bock
57 - Minor adjustments