From 13a5daa5d38f99fbd26e31f34d8510a609267ca3 Mon Sep 17 00:00:00 2001 From: Bandie Date: Wed, 4 Apr 2018 15:29:59 +0200 Subject: [PATCH] =?UTF-8?q?Text=E2=84=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .travis.yml | 1 + Makefile | 3 +-- configure | 2 -- 3 files changed, 2 insertions(+), 4 deletions(-) delete mode 100755 configure diff --git a/.travis.yml b/.travis.yml index 7f5f907..917a197 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,3 +5,4 @@ before_install: - sudo apt-get -qq update - sudo apt-get install -y libnotify-dev +script: make && make install diff --git a/Makefile b/Makefile index 85470f9..c9c4df0 100644 --- a/Makefile +++ b/Makefile @@ -9,11 +9,10 @@ all: install: mkdir -p /usr/local/bin cp ./bin/notify_touchy /usr/local/bin/ - cp ./systemd/notify_touchy.service /etc/systemd/system chown root:root /usr/local/bin/notify_touchy chmod 740 /usr/local/bin/notify_touchy @printf "Done.\n" - @printf "You may want to enable and start the service: \"systemctl enable notify_touchy ; systemctl start notify_touchy\"\n" @printf "The file will be called /verified" + @printf "You may want to configure a service for this program. Look into the systemd directory for a systemd example.\n" uninstall: rm /usr/sbin/local/notify_touchy diff --git a/configure b/configure deleted file mode 100755 index 7788339..0000000 --- a/configure +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -echo "This does nothing. Run make instead."