-
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* feat: ctwm * per mado suggestion * wrong month * Update anda/desktops/ctwm/ctwm.spec Co-authored-by: madomado <[email protected]> Signed-off-by: Jaiden Riordan <[email protected]> * Update anda/desktops/ctwm/ctwm.spec Co-authored-by: madomado <[email protected]> Signed-off-by: Jaiden Riordan <[email protected]> * fix ctwm * Add myself in changelog Signed-off-by: Owen Zimmerman <[email protected]> * %description grammer lol Signed-off-by: Owen Zimmerman <[email protected]> --------- Signed-off-by: Jaiden Riordan <[email protected]> Signed-off-by: Owen Zimmerman <[email protected]> Co-authored-by: madomado <[email protected]> Co-authored-by: Owen-sz <[email protected]> Co-authored-by: Owen Zimmerman <[email protected]> (cherry picked from commit 1ed1004) Co-authored-by: Jaiden Riordan <[email protected]>
- Loading branch information
1 parent
bf84fbb
commit a5771d3
Showing
4 changed files
with
68 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
project pkg { | ||
rpm { | ||
spec = "ctwm.spec" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[Desktop Entry] | ||
Name=CTWM | ||
Comment=Claude's Tab Window Manager | ||
TryExec=ctwm | ||
Exec=ctwm | ||
Type=Xsession | ||
Encoding=UTF-8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
Summary: Lightweight window manager with virtual workspaces | ||
Name: ctwm | ||
Version: 4.1.0 | ||
Release: 1%?dist | ||
URL: https://ctwm.org | ||
BuildRequires: libjpeg-turbo-devel libX11-devel libXext-devel libXmu-devel libXpm-devel libXt-devel libXrandr-devel cmake gcc m4 | ||
Source0: https://www.ctwm.org/dist/%{name}-%{version}.tar.xz | ||
Source1: %{name}.desktop | ||
License: MIT | ||
Requires: m4 | ||
# Derived from RPMSphere's packaging | ||
|
||
%description | ||
CTWM is a window manager based on TWM (with virtual workspaces added). | ||
|
||
%prep | ||
%setup -q | ||
|
||
%build | ||
%cmake | ||
%cmake_build | ||
|
||
%install | ||
%cmake_install | ||
%{__install} -Dm644 %{SOURCE1} %{buildroot}%{_datadir}/xsessions/%{name}.desktop | ||
|
||
%files | ||
%doc README.md CHANGES.md | ||
%license COPYRIGHT | ||
%{_bindir}/%{name} | ||
%{_mandir}/man1/%{name}* | ||
%{_datadir}/xsessions/%{name}.desktop | ||
%{_datadir}/ctwm | ||
%{_datadir}/doc/ctwm/ctwm.1.html | ||
%{_datadir}/examples/ctwm/system.ctwmrc | ||
|
||
%changelog | ||
* Tue Dec 17 2024 Owen Zimmerman <[email protected]> | ||
- Add .desktop and .rhai file, fix dependancies, and switch to .tar.xz source (smaller download) | ||
* Thu Jun 27 2024 Jaiden Riordan <[email protected]> - 4.1.0 | ||
- Rewrite for Terra, Thanks RPMSphere | ||
* Tue Dec 24 2019 Wei-Lun Chao <[email protected]> - 4.0.3 | ||
- Rebuilt for Fedora | ||
* Sat Apr 9 2011 Agnelo de la Crotche <[email protected]> | ||
- package for openSUSE 11.3/11.4 | ||
* Thu Feb 16 2006 Richard Levitte <[email protected]> | ||
- Release ctwm 3.8a. | ||
* Wed May 4 2005 Rudolph T Maceyko <[email protected]> | ||
- Tweaks. Added all .ctwmrc files as well as sound and VMS docs. | ||
* Wed May 4 2005 Richard Levitte <[email protected]> | ||
- Changed some directory specifications to RedHat-ish standards. | ||
* Tue May 3 2005 Richard Levitte <[email protected]> | ||
- Received the original from Johan Vromans. Adjusted it to become | ||
an official .spec file. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
rpm.version(find("<p>Current release: ([\\d.]+)</p>", get("https://www.ctwm.org/download.html"), 1)); |