source: projects/specs/branches/6/g/gsettings-desktop-schemas/gsettings-desktop-schemas-vl.spec @ 2090

Revision 2090, 2.2 KB checked in by Takemikaduchi, 14 years ago (diff)

New package(giggle,dconf)
Add Requires (gsettings-desktop-schemas)
new upstream release (vte,xorg-x11-drv-*)

Line 
1# Basic Information
2Name:           gsettings-desktop-schemas
3Version:        0.0.1
4Release:        2%{?_dist_release}
5License:        GPL-2
6Group:          System Environment/Base
7Source0:        http://ftp.gnome.org/pub/gnome/sources/%{name}/0.0/%{name}-%{version}.tar.bz2
8BuildRoot:      %{_tmppath}/%{name}-%{version}-root
9
10Vendor:         Project Vine
11Distribution:   Vine Linux
12Packager:       yasumichi
13
14Summary:        A collection of GSettings schemas
15Summary(ja):    GSettingsスキーマのコレクション
16
17# Dependency
18# 以下に依存関係を記述してください。
19Requires:       pkgconfig
20Requires:       glib2
21Requires:       dconf
22
23BuildRequires:  pkgconfig
24BuildRequires:  glib2-devel
25
26%description
27gsettings-desktop-schemas contains a collection of GSettings schemas for
28settings shared by various components of a desktop.
29
30%description -l ja
31gsettings-desktop-schemasは、デスクトップのさまざまな部品によって共有される
32GSettingsスキーマのコレクションを含んでいます。
33
34%prep
35%setup -q
36
37%build
38%configure --disable-schemas-compile
39%{__make} %{?_smp_mflags}
40
41%install
42%{__rm} -rf ${RPM_BUILD_ROOT}
43%{__make} install DESTDIR=${RPM_BUILD_ROOT}
44
45#%%find_lang %{name}
46
47%posttrans
48glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || :
49
50%postun
51if [ $1 -eq 0 ]; then
52  glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || :
53fi
54
55%clean
56%{__rm} -rf ${RPM_BUILD_ROOT}
57
58
59#%%files -f %{name}.lang
60%files
61%defattr(-,root,root)
62%doc COPYING ChangeLog NEWS README HACKING
63%{_includedir}/gsettings-desktop-schemas/gdesktop-enums.h
64%{_libdir}/pkgconfig/gsettings-desktop-schemas.pc
65%{_datadir}/glib-2.0/schemas/org.gnome.desktop.background.gschema.xml
66%{_datadir}/glib-2.0/schemas/org.gnome.desktop.default-applications.gschema.xml
67%{_datadir}/glib-2.0/schemas/org.gnome.desktop.enums.xml
68%{_datadir}/glib-2.0/schemas/org.gnome.desktop.interface.gschema.xml
69%{_datadir}/glib-2.0/schemas/org.gnome.desktop.lockdown.gschema.xml
70%{_datadir}/glib-2.0/schemas/org.gnome.desktop.url-handlers.gschema.xml
71%{_datadir}/glib-2.0/schemas/org.gnome.system.proxy.gschema.xml
72
73%changelog
74* Sun Oct 17 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.0.1-2
75- add Requires: dconf
76
77* Tue Oct 12 2010 Yasumichi Akahoshi <yasumichi@vinelinux.org> 0.0.1-1
78- new package.
79
80
Note: See TracBrowser for help on using the repository browser.