forked from jimevins/glabels
-
Notifications
You must be signed in to change notification settings - Fork 0
/
glabels.spec.in
106 lines (86 loc) · 2.91 KB
/
glabels.spec.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
Summary: glabels is a GNOME program to create labels and business cards
Name: glabels
Version: @VERSION@
Release: 1
License: GPL
Group: Applications/Publishing
URL: http://glabels.sourceforge.net/
Source: %{name}-%{version}.tar.gz
BuildRoot: %{_tmppath}/root-%{name}-%{version}
Prefix: %{_prefix}
BuildRequires: gtk2-devel >= @GTK_REQUIRED@
BuildRequires: libxml2-devel >= @LIBXML_REQUIRED@
BuildRequires: libgnomeui-devel >= @LIBGNOMEUI_REQUIRED@
BuildRequires: libglade2-devel >= @LIBGLADE_REQUIRED@
Requires: gtk2 >= @GTK_REQUIRED@
Requires: libxml2 >= @LIBXML_REQUIRED@
Requires: libgnomeui >= @LIBGNOMEUI_REQUIRED@
Requires: libglade2 >= @LIBGLADE_REQUIRED@
%description
gLabels is a lightweight program for creating labels and
business cards for the GNOME desktop environment.
It is designed to work with various laser/ink-jet peel-off
label and business card sheets that you'll find at most office
supply stores.
%prep
%setup
%build
%configure
%{__make} %{?_smp_mflags}
%install
%{__rm} -rf %{buildroot}
%makeinstall
%find_lang %{name}
desktop-file-install --vendor gnome --delete-original \
--add-category X-Red-Hat-Base \
--dir %{buildroot}%{_datadir}/applications \
%{buildroot}%{_datadir}/applications/%{name}.desktop
%{__rm} -rf %{buildroot}/var/scrollkeeper
%{__rm} -f %{buildroot}%{_datadir}/mime/XMLnamespaces
%{__rm} -f %{buildroot}%{_datadir}/mime/globs
%{__rm} -f %{buildroot}%{_datadir}/mime/magic
%{__rm} -f %{buildroot}%{_datadir}/mime/mime.cache
%{__rm} -rf %{buildroot}%{_datadir}/mime/application
%{__rm} -rf %{buildroot}%{_datadir}/mime/aliases
%{__rm} -rf %{buildroot}%{_datadir}/mime/subclasses
%clean
%{__rm} -rf %{buildroot}
%post
scrollkeeper-update
if (update-mime-database -v &> /dev/null); then
update-mime-database "%{_datadir}/mime" > /dev/null
fi
%postun
scrollkeeper-update
if (update-mime-database -v &> /dev/null); then
update-mime-database "%{_datadir}/mime" > /dev/null
fi
%files -f %{name}.lang
%defattr(-, root, root)
%doc README COPYING.README_FIRST COPYING COPYING-DOCS COPYING-LIBGLABELS ChangeLog NEWS AUTHORS INSTALL
%doc %{_datadir}/gnome/help/glabels/
%{_bindir}/glabels
%{_bindir}/glabels-batch
%{_libdir}/libglabels.*
%{_libdir}/pkgconfig/libglabels.pc
%{_includedir}/libglabels/*
%{_datadir}/glabels/
%{_datadir}/pixmaps/*
%{_datadir}/omf/
%{_datadir}/applications/*.desktop
%{_datadir}/application-registry/*
%{_datadir}/mime-info/*
%{_datadir}/mime/packages/*
%{_datadir}/man/*
%{_datadir}/gtk-doc/html/libglabels/*
%changelog
* Sun Aug 8 2004 Jim Evins <[email protected]>
- Added support for freedesktop.org mime database registration
* Sat Feb 21 2004 Jim Evins <[email protected]>
- Added libglabels related files
* Tue Dec 23 2003 Jim Evins <[email protected]>
- Added support for scrollkeeper
* Sat Oct 18 2003 Jim Evins <[email protected]>
- Updated, based largely on Dag Wieers <[email protected]> glabels.spec
* Sat May 19 2001 Jim Evins <[email protected]>
- Created