repo: uritools
action: commit
revision: 
path_from: 
revision_from: b19fda7a666dc4d339b7df60e080b59fca012a33:
path_to: 
revision_to: 
git.thebackupbox.net
uritools
git clone git://git.thebackupbox.net/uritools
commit b19fda7a666dc4d339b7df60e080b59fca012a33
Author: epoch 
Date:   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
index e76a1a05e2c258a12e707af48e2009ec5e8f8537..
index ..c865b28fdacd5607a43cea298159fcb688ef9433 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,6 +2,7 @@ uricmp
 uricut
 uriescape
 urimatch
+urigetline
 uriunescape
 urijoin
 shorten
diff --git a/Makefile b/Makefile
index 090e2c046b2a6cb930f31422152d6ecf43208e44..
index ..5d74d6c4a89e523023ec8de8618925e458dcd4f2 100644
--- 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-----