Made dependency updates required
This commit is contained in:
parent
2480241107
commit
698da090b9
16
Makefile
16
Makefile
|
@ -1,6 +1,12 @@
|
||||||
all: mumbledj
|
all: mumbledj
|
||||||
|
|
||||||
mumbledj: main.go commands.go parseconfig.go strings.go song.go playlist.go songqueue.go
|
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 .
|
go build .
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
|
@ -13,10 +19,6 @@ install:
|
||||||
cp -u mumbledj.gcfg ~/.mumbledj/config/mumbledj.gcfg
|
cp -u mumbledj.gcfg ~/.mumbledj/config/mumbledj.gcfg
|
||||||
sudo cp -f mumbledj /usr/local/bin/mumbledj
|
sudo cp -f mumbledj /usr/local/bin/mumbledj
|
||||||
|
|
||||||
install_deps:
|
build:
|
||||||
go get -u github.com/layeh/gumble/gumble
|
go build .
|
||||||
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
|
|
||||||
|
|
Reference in a new issue