Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ PACKAGE_MANAGER ?= npm
PACKAGE_MANAGER_SUBDIR_ARG ?= --prefix
PACKAGE_MANAGER_INSTALL_CMD ?= install
PACKAGE_MANAGER_ADD_CMD ?= install
PUBLISH_FOR_PULL_REQUEST = true

install_build_deps:
@$(PACKAGE_MANAGER) $(PACKAGE_MANAGER_INSTALL_CMD)
Expand All @@ -21,6 +22,7 @@ prepare: clean install_build_deps
@mkdir -p $(SOURCE_DIR)

@echo "Download installer"
@echo ${GITHUB_TOKEN}
@wget -nv $(BASE_URL) -O $(SOURCE_DIR)/deezer-setup-$(PKGVER).exe

@echo "Verify installer"
Expand Down Expand Up @@ -67,13 +69,14 @@ build_tar.xz_x64:

build_deb_x64:
@echo "Build deb package"
@$(PACKAGE_MANAGER) $(PACKAGE_MANAGER_SUBDIR_ARG) $(APP_DIR) run build-deb-x64
@PUBLISH_FOR_PULL_REQUEST=true $(PACKAGE_MANAGER) $(PACKAGE_MANAGER_SUBDIR_ARG) $(APP_DIR) run build-deb-x64

build_rpm_x64:
@echo "Build rpm package"
@$(PACKAGE_MANAGER) $(PACKAGE_MANAGER_SUBDIR_ARG) $(APP_DIR) run build-rpm-x64

build_appimage_x64:
@export PUBLISH_FOR_PULL_REQUEST=true
@echo "Build AppImage binary"
@$(PACKAGE_MANAGER) $(PACKAGE_MANAGER_SUBDIR_ARG) $(APP_DIR) run build-appimage-x64

Expand Down