From 37a4e797ca71e70f6769218dad9ae2a7723f0227 Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Tue, 27 Apr 2010 20:27:13 +0100 Subject: [PATCH] install into /usr/share/local instead --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 755f367f..501a82f4 100644 --- a/Makefile +++ b/Makefile @@ -2,15 +2,15 @@ SparklePony.exe : src/SparklePony.cs gmcs -pkg:gtk-sharp-2.0 -pkg:notify-sharp -pkg:dbus-sharp src/SparklePony.cs install: - mkdir /usr/share/sparklepony - cp src/SparklePony.exe /usr/share/sparklepony/ + mkdir /usr/share/local/sparklepony + cp src/SparklePony.exe /usr/share/local/sparklepony/ cp src/sparklepony /usr/bin/ cp data/icons /usr/share/ -R uninstall: rm /usr/bin/sparklepony - rm /usr/share/sparklepony/SparklePony.exe - rmdir /usr/share/sparklepony + rm /usr/share/local/sparklepony/SparklePony.exe + rmdir /usr/share/local/sparklepony rm /usr/share/icons/hicolor/*x*/places/folder-publicshare.png clean: