1
0
mirror of https://github.com/pgrondek/config.git synced 2024-11-22 12:03:43 +00:00
config/i3/playerctl.mk
2019-11-19 09:53:28 +01:00

23 lines
567 B
Makefile

PACKAGE=playerctl
GITHUB_VERSION=2.0.2
GITHUB_URL=https://github.com/altdesktop/playerctl/releases/download/v$(GITHUB_VERSION)/playerctl-$(GITHUB_VERSION)_amd64.deb
BIN=/usr/bin/playerctl
ROOT_APT=sudo aptitude
install_playerctl: $(BIN)
$(BIN):
ifeq ($(shell aptitude search $PACKAGE 2&> /dev/null; echo $?), 0)
$(ROOT_APT) install $(PACKAGE)
else
$(eval TMP = $(shell mktemp -d))
curl -fsSL $(GITHUB_URL) -o $(TMP)/playerctl.deb
chmod -R a+rx $(TMP)
sudo apt install $(TMP)/playerctl.deb
rm -rf $(TMP)
endif
clean_playerctl:
$(ROOT_APT) remove $(PACKAGE)