From 698da090b9d14f3ebf325197e1a764dfc9567351 Mon Sep 17 00:00:00 2001 From: Matthieu Grieger Date: Mon, 5 Jan 2015 12:05:20 -0800 Subject: [PATCH] Made dependency updates required --- Makefile | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index e469500..120700b 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,12 @@ all: mumbledj mumbledj: main.go commands.go parseconfig.go strings.go song.go playlist.go songqueue.go + go get -u github.com/layeh/gumble/gumble + go get -u github.com/layeh/gumble/gumbleutil + go get -u github.com/layeh/gumble/gumble_ffmpeg + go get -u code.google.com/p/gcfg + go get -u github.com/kennygrant/sanitize + go get -u github.com/jmoiron/jsonq go build . clean: @@ -12,11 +18,7 @@ install: if [ -a ~/.mumbledj/config/mumbledj.gcfg ]; then mv ~/.mumbledj/config/mumbledj.gcfg ~/.mumbledj/config/mumbledj_backup.gcfg; fi; cp -u mumbledj.gcfg ~/.mumbledj/config/mumbledj.gcfg sudo cp -f mumbledj /usr/local/bin/mumbledj + +build: + go build . -install_deps: - go get -u github.com/layeh/gumble/gumble - go get -u github.com/layeh/gumble/gumbleutil - go get -u github.com/layeh/gumble/gumble_ffmpeg - go get -u code.google.com/p/gcfg - go get -u github.com/kennygrant/sanitize - go get -u github.com/jmoiron/jsonq