diff options
Diffstat (limited to '.gear')
| -rw-r--r-- | .gear/dwm.spec | 41 | ||||
| -rw-r--r-- | .gear/rules | 2 |
2 files changed, 43 insertions, 0 deletions
diff --git a/.gear/dwm.spec b/.gear/dwm.spec new file mode 100644 index 0000000..b1004a8 --- /dev/null +++ b/.gear/dwm.spec @@ -0,0 +1,41 @@ +Name: dwm +Version: 6.4 +Release: alt1 + +Summary: dwm is a dynamic window manager for X +License: MIT +Group: Graphical desktop/Other +Url: https://dwm.suckless.org/ + +Source0: %{name}-%{version}.tar + +BuildRequires: make +BuildRequires: gcc +BuildRequires: libXft-devel libXinerama-devel +Requires: libX11 libXft libXinerama libfontconfig1 + +%description +dwm is a dynamic window manager for X. It manages windows in tiled, monocle and +floating layouts. All of the layouts can be applied dynamically, optimising the +environment for the application in use and the task performed. + +%prep +%setup + +%build +%make_build + +%install +%makeinstall_std PREFIX=%prefix +install -pD -m 644 %name.desktop %buildroot%_datadir/xsessions/%name.desktop +install -pD -m 644 %name.png %buildroot%_niconsdir/%name.png + +%files +%_bindir/%name +%_man1dir/%name.1* +%_datadir/xsessions/%name.desktop +%_niconsdir/%name.png + +%changelog +* Thu Jul 27 2023 Andrew Guschin <guschin@altlinux.org> 6.4-alt1 +- Initial build for ALT Linux. diff --git a/.gear/rules b/.gear/rules new file mode 100644 index 0000000..9c8ded2 --- /dev/null +++ b/.gear/rules @@ -0,0 +1,2 @@ +tar: . +spec: .gear/dwm.spec |