forked from pool/i3status
0069b5ab1f
OBS-URL: https://build.opensuse.org/package/show/X11:windowmanagers/i3status?expand=0&rev=2
71 lines
2.3 KiB
RPMSpec
71 lines
2.3 KiB
RPMSpec
# vim: set sw=4 ts=4 et nu:
|
|
|
|
# Copyright (c) 2012 Pascal Bleser <pascal.bleser@opensuse.org>
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
Name: i3status
|
|
Version: 2.6
|
|
Release: 0
|
|
Summary: I3 Status Bar
|
|
Source: http://i3wm.org/i3status/i3status-%{version}.tar.bz2
|
|
Patch1: i3status-makefile.patch
|
|
URL: http://i3wm.org/i3status/
|
|
Group: System/Monitoring
|
|
License: BSD-3-Clause
|
|
BuildRoot: %{_tmppath}/build-%{name}-%{version}
|
|
BuildRequires: alsa-devel
|
|
%if 0%{?suse_version} >= 1140
|
|
BuildRequires: libiw-devel
|
|
%else
|
|
BuildRequires: wireless-tools
|
|
%endif
|
|
BuildRequires: libyajl-devel
|
|
BuildRequires: libconfuse-devel
|
|
BuildRequires: gcc make glibc-devel pkgconfig
|
|
BuildRequires: autoconf automake libtool
|
|
BuildRequires: update-desktop-files
|
|
|
|
%description
|
|
i3status is a small program (about 1500 SLOC) for generating a status bar for
|
|
i3bar, dzen2, xmobar or similar programs. It is designed to be very efficient
|
|
by issuing a very small number of system calls, as one generally wants to
|
|
update such a status line every second. This ensures that even under high load,
|
|
your status bar is updated correctly. Also, it saves a bit of energy by not
|
|
hogging your CPU as much as spawning the corresponding amount of shell commands
|
|
would.
|
|
|
|
%prep
|
|
%setup -q
|
|
%patch1
|
|
|
|
%build
|
|
%__make %{?_smp_mflags} \
|
|
OPTFLAGS="%{optflags}" \
|
|
PREFIX="%{_prefix}" \
|
|
SYSCONFDIR="%{_sysconfdir}"
|
|
|
|
%install
|
|
%makeinstall
|
|
|
|
%clean
|
|
%{?buildroot:%__rm -rf "%{buildroot}"}
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%doc CHANGELOG LICENSE
|
|
%config(noreplace) %{_sysconfdir}/i3status.conf
|
|
%{_bindir}/i3status
|
|
%doc %{_mandir}/man1/i3status.1*
|
|
|
|
%changelog
|