Init package
This commit is contained in:
parent
acfc19c97c
commit
14ad2178c1
BIN
xfce4-settings-4.14.3.tar.bz2
Normal file
BIN
xfce4-settings-4.14.3.tar.bz2
Normal file
Binary file not shown.
24
xfce4-settings-4.14.patch
Normal file
24
xfce4-settings-4.14.patch
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
--- xfsettingsd/xsettings.xml.orig 2015-02-23 19:33:11.000000000 -0600
|
||||||
|
+++ xfsettingsd/xsettings.xml 2015-02-28 18:30:51.863719465 -0600
|
||||||
|
@@ -6,8 +6,8 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<channel name="xsettings" version="1.0">
|
||||||
|
<property name="Net" type="empty">
|
||||||
|
- <property name="ThemeName" type="empty"/>
|
||||||
|
- <property name="IconThemeName" type="empty"/>
|
||||||
|
+ <property name="ThemeName" type="string" value="Adwaita"/>
|
||||||
|
+ <property name="IconThemeName" type="string" value="openEuler"/>
|
||||||
|
<property name="DoubleClickTime" type="int" value="400"/>
|
||||||
|
<property name="DoubleClickDistance" type="int" value="5"/>
|
||||||
|
<property name="DndDragThreshold" type="int" value="8"/>
|
||||||
|
@@ -19,9 +19,9 @@
|
||||||
|
</property>
|
||||||
|
<property name="Xft" type="empty">
|
||||||
|
<property name="DPI" type="empty"/>
|
||||||
|
- <property name="Antialias" type="int" value="-1"/>
|
||||||
|
+ <property name="Antialias" type="int" value="1"/>
|
||||||
|
<property name="Hinting" type="int" value="-1"/>
|
||||||
|
<property name="HintStyle" type="string" value="hintnone"/>
|
||||||
|
<property name="RGBA" type="string" value="none"/>
|
||||||
|
<!-- <property name="Lcdfilter" type="string" value="none"/> -->
|
||||||
|
</property>
|
||||||
77
xfce4-settings.spec
Normal file
77
xfce4-settings.spec
Normal file
@ -0,0 +1,77 @@
|
|||||||
|
%global xfceversion 4.14
|
||||||
|
Name: xfce4-settings
|
||||||
|
Version: 4.14.3
|
||||||
|
Release: 1%{?dist}
|
||||||
|
Summary: Settings Manager for Xfce
|
||||||
|
License: GPLv2+
|
||||||
|
#Group: Development/Libraries
|
||||||
|
URL: http://www.xfce.org/
|
||||||
|
Source0: http://archive.xfce.org/src/xfce/%{name}/%{xfceversion}/%{name}-%{version}.tar.bz2
|
||||||
|
# theme and font settings
|
||||||
|
Patch0: xfce4-settings-4.14.patch
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
|
#BuildArch: noarch
|
||||||
|
BuildRequires: gcc-c++
|
||||||
|
BuildRequires: exo-devel >= 0.5.0
|
||||||
|
BuildRequires: libxfce4ui-devel >= %{xfceversion}
|
||||||
|
BuildRequires: libxfce4util-devel >= %{xfceversion}
|
||||||
|
BuildRequires: xfconf-devel >= %{xfceversion}
|
||||||
|
BuildRequires: libnotify-devel
|
||||||
|
BuildRequires: colord-devel
|
||||||
|
BuildRequires: libcanberra-devel
|
||||||
|
BuildRequires: libxklavier-devel
|
||||||
|
BuildRequires: libXrandr-devel
|
||||||
|
BuildRequires: garcon-devel >= 0.1.10
|
||||||
|
BuildRequires: desktop-file-utils >= 0.7
|
||||||
|
BuildRequires: gettext
|
||||||
|
BuildRequires: intltool
|
||||||
|
Requires: xfconf
|
||||||
|
|
||||||
|
%description
|
||||||
|
This package includes the settings manager applications for the Xfce desktop.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q
|
||||||
|
%patch0
|
||||||
|
|
||||||
|
%build
|
||||||
|
%configure --enable-sound-settings --enable-pluggable-dialogs --enable-maintainer-mode --enable-xorg-libinput
|
||||||
|
%make_build
|
||||||
|
|
||||||
|
%install
|
||||||
|
%make_install
|
||||||
|
|
||||||
|
for file in %{buildroot}%{_datadir}/applications/*.desktop ; do
|
||||||
|
desktop-file-install \
|
||||||
|
--add-category="X-XFCE" \
|
||||||
|
--remove-category="XFCE" \
|
||||||
|
--delete-original \
|
||||||
|
--dir=%{buildroot}%{_datadir}/applications \
|
||||||
|
$file
|
||||||
|
done
|
||||||
|
|
||||||
|
|
||||||
|
%find_lang %{name}
|
||||||
|
|
||||||
|
%files -f %{name}.lang
|
||||||
|
%license COPYING
|
||||||
|
%doc AUTHORS ChangeLog NEWS TODO
|
||||||
|
%config(noreplace) %{_sysconfdir}/xdg/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml
|
||||||
|
%config(noreplace) %{_sysconfdir}/xdg/autostart/xfsettingsd.desktop
|
||||||
|
%config(noreplace) %{_sysconfdir}/xdg/menus/xfce-settings-manager.menu
|
||||||
|
%{_bindir}/xfce4-*-settings
|
||||||
|
%{_bindir}/xfce4-settings-editor
|
||||||
|
%{_bindir}/xfce4-settings-manager
|
||||||
|
%{_bindir}/xfsettingsd
|
||||||
|
%{_bindir}/xfce4-find-cursor
|
||||||
|
%{_datadir}/applications/xfce*.desktop
|
||||||
|
%{_libdir}/xfce4/settings
|
||||||
|
%{_datadir}/icons/hicolor/128x128/devices/xfce-*.png
|
||||||
|
%{_datadir}/icons/hicolor/24x24/apps/xfce*.png
|
||||||
|
%{_datadir}/icons/hicolor/48x48/apps/xfce*.png
|
||||||
|
%{_datadir}/icons/hicolor/64x64/apps/xfce*.png
|
||||||
|
%{_datadir}/icons/hicolor/scalable/apps/xfce*.svg
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Sun Jul 12 2020 Dillon Chen <dillon.chen@turbolinux.com.cn> - 4.14.3-1
|
||||||
|
- Init package
|
||||||
Loading…
x
Reference in New Issue
Block a user