changelog shortlog graph tags branches files raw help

Mercurial > infra / changeset: get stumpwm

changeset 197: 1ebb2ba98e88
parent 196: 813fff1d2096
child 198: 3b84ce879498
author: Richard Westhaver <ellis@rwest.io>
date: Tue, 19 Mar 2024 23:24:13 -0400
files: makefile scripts/get-stumpwm.sh scripts/make-windows-iso.nu
description: get stumpwm
     1.1--- a/makefile	Sun Mar 03 20:50:59 2024 -0500
     1.2+++ b/makefile	Tue Mar 19 23:24:13 2024 -0400
     1.3@@ -115,7 +115,14 @@
     1.4 
     1.5 build/quicklisp.lisp:$(B);cd $< && curl -O https://beta.quicklisp.org/quicklisp.lisp
     1.6 quicklisp-install:scripts/quicklisp-install.sh build/quicklisp.lisp;$<
     1.7+STUMPWM_TARGET:=build/src/stumpwm
     1.8 
     1.9+$(STUMPWM_TARGET):scripts/get-stumpwm.sh $(B);$<
    1.10+stumpwm:$(STUMPWM_TARGET);
    1.11+stumpwm-build:stumpwm;
    1.12+	cd $(STUMPWM_TARGET) && ./autogen.sh && ./configure && make
    1.13+stumpwm-install:stumpwm-build;
    1.14+	cd $(STUMPWM_TARGET) && make install
    1.15 ### Rust
    1.16 RUST_TARGET:=build/src/rust
    1.17 $(RUST_TARGET):scripts/get-rust.sh $(B);$<
     2.1--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2+++ b/scripts/get-stumpwm.sh	Tue Mar 19 23:24:13 2024 -0400
     2.3@@ -0,0 +1,3 @@
     2.4+#!/usr/bin/env bash
     2.5+# get Emacs source code
     2.6+git clone https://vc.compiler.company/packy/stumpwm.git build/src/stumpwm