diff options
| author | lost <lost@privacyrequired.com> | 2026-05-28 15:45:49 -0400 |
|---|---|---|
| committer | lost <lost@privacyrequired.com> | 2026-05-28 15:45:49 -0400 |
| commit | 3b461a405c351e400fb3790e6efac4e92e79dc21 (patch) | |
| tree | ac8a58708d9d4de8049cc7f505fab2c3b53aca49 /repos/community/hevel | |
| parent | 1a46160999fa2842e5aaf1f089f42af4cfad91d2 (diff) | |
| download | alicelinux-3b461a405c351e400fb3790e6efac4e92e79dc21.tar.gz alicelinux-3b461a405c351e400fb3790e6efac4e92e79dc21.zip | |
added wayland.fyi projects (lots of things)
Diffstat (limited to 'repos/community/hevel')
| -rw-r--r-- | repos/community/hevel/.checksum | 2 | ||||
| -rw-r--r-- | repos/community/hevel/.files | 3 | ||||
| -rw-r--r-- | repos/community/hevel/abuild | 6 | ||||
| -rw-r--r-- | repos/community/hevel/depends | 6 | ||||
| -rw-r--r-- | repos/community/hevel/makefile.patch | 20 |
5 files changed, 37 insertions, 0 deletions
diff --git a/repos/community/hevel/.checksum b/repos/community/hevel/.checksum new file mode 100644 index 00000000..e54d97c0 --- /dev/null +++ b/repos/community/hevel/.checksum @@ -0,0 +1,2 @@ +efb8e52ca27ce18f82012d3f39d6875cac4a76a558dc9eaf86630a6f7d99c8a7 7ef61a5c0d4012417443734919ac723635cd5464.tar.gz +ac2a175fe30d4aa5a603d5cc33f7adc0538a24a8c39e88e03409a5b48a0edf6d makefile.patch diff --git a/repos/community/hevel/.files b/repos/community/hevel/.files new file mode 100644 index 00000000..c335f4ce --- /dev/null +++ b/repos/community/hevel/.files @@ -0,0 +1,3 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/hevel diff --git a/repos/community/hevel/abuild b/repos/community/hevel/abuild new file mode 100644 index 00000000..d4cabde9 --- /dev/null +++ b/repos/community/hevel/abuild @@ -0,0 +1,6 @@ +name=hevel +version=20260507 +commit=7ef61a5c0d4012417443734919ac723635cd5464 +release=1 +source="https://git.sr.ht/~dlm/$name/archive/$commit.tar.gz +makefile.patch" diff --git a/repos/community/hevel/depends b/repos/community/hevel/depends new file mode 100644 index 00000000..886b2694 --- /dev/null +++ b/repos/community/hevel/depends @@ -0,0 +1,6 @@ +libinput +libxkbcommon +neuswc +neuwld +wayland +wayland-protocols diff --git a/repos/community/hevel/makefile.patch b/repos/community/hevel/makefile.patch new file mode 100644 index 00000000..cd319061 --- /dev/null +++ b/repos/community/hevel/makefile.patch @@ -0,0 +1,20 @@ +--- hevel-7ef61a5c0d4012417443734919ac723635cd5464/Makefile ++++ patched-ver/Makefile +@@ -10,14 +10,15 @@ + CFLAGS += `$(PKG_CONFIG) --cflags $(PKGS)` + LDLIBS += `$(PKG_CONFIG) --libs $(PKGS)` + +-SRC = config.h src/hevel.c src/input.c src/scroll.c src/select.c src/window.c src/zoom.c ++SRC = src/hevel.c src/input.c src/scroll.c src/select.c src/window.c src/zoom.c ++CONF = config.h + + all: hevel + + config.h: + cp config.def.h $@ + +-hevel: $(SRC) ++hevel: $(SRC) $(CONF) + $(CC) $(CFLAGS) $(LDFLAGS) -o hevel $(SRC) $(LDLIBS) + + clean: |