repo: uritools action: commit revision: path_from: revision_from: b19fda7a666dc4d339b7df60e080b59fca012a33: path_to: revision_to:
commit b19fda7a666dc4d339b7df60e080b59fca012a33 Author: epochDate: Sun Nov 14 04:27:11 2021 +0000 Makefile got some new things added to the install and build requirements diff --git a/.gitignore b/.gitignore
--- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ uricmp uricut uriescape urimatch +urigetline uriunescape urijoin shorten diff --git a/Makefile b/Makefile
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@ CFLAGS:=-std=c11 -pedantic -Wall
PREFIX:=/usr/local
CC:=gcc
-all: urimatch uricut urijoin uricmp uriunescape uriescape shorten
+all: urimatch uricut urijoin uricmp uriunescape uriescape shorten urimatchpairs urigetline
shorten: LDLIBS=-lcrypto
shorten: shorten.c
@@ -24,6 +24,8 @@ clean:
rm -f *.o
install: all
+ install -t $(PREFIX)/bin urimatchpairs
+ install -t $(PREFIX)/bin uristart.conf
install -t $(PREFIX)/bin sqesc
install -t $(PREFIX)/bin ssh_hack
install -t $(PREFIX)/bin xwindowURI
diff --git a/uristart.conf b/uristart.conf
new file mode 100755
index 0000000000000000000000000000000000000000..3d9ea7d7ff8f51a53a5e794fb20a00cc7bf0e077
--- /dev/null
+++ b/uristart.conf
@@ -0,0 +1,2 @@
+#!/usr/bin/env bash
+exec cat "${XDG_CONFIG_HOME:-$HOME/.config}"/uristart.conf
-----END OF PAGE-----