Fix makefile formatting

This commit is contained in:
Joshua M. Boniface 2020-03-23 22:55:37 -04:00
parent be9eb0f19e
commit fc5e932492
1 changed files with 21 additions and 21 deletions

View File

@ -2,27 +2,27 @@ VERSION := $(shell sed -ne '/^Version:/s/.* *//p' fedora/jellyfin.spec)
srpm:
cd fedora/; \
SOURCE_DIR=.. \
WORKDIR="$${PWD}"; \
package_temporary_dir="$${WORKDIR}/pkg-dist-tmp"; \
pkg_src_dir="$${WORKDIR}"; \
GNU_TAR=1; \
tar \
--transform "s,^\.,jellyfin-server-$(VERSION)," \
--exclude='.git*' \
--exclude='**/.git' \
--exclude='**/.hg' \
--exclude='**/.vs' \
--exclude='**/.vscode' \
--exclude='deployment' \
--exclude='**/bin' \
--exclude='**/obj' \
--exclude='**/.nuget' \
--exclude='*.deb' \
--exclude='*.rpm' \
--exclude='jellyfin-server-$(VERSION).tar.gz' \
-czf "jellyfin-server-$(VERSION).tar.gz" \
-C $${SOURCE_DIR} ./
SOURCE_DIR=.. \
WORKDIR="$${PWD}"; \
package_temporary_dir="$${WORKDIR}/pkg-dist-tmp"; \
pkg_src_dir="$${WORKDIR}"; \
GNU_TAR=1; \
tar \
--transform "s,^\.,jellyfin-server-$(VERSION)," \
--exclude='.git*' \
--exclude='**/.git' \
--exclude='**/.hg' \
--exclude='**/.vs' \
--exclude='**/.vscode' \
--exclude='deployment' \
--exclude='**/bin' \
--exclude='**/obj' \
--exclude='**/.nuget' \
--exclude='*.deb' \
--exclude='*.rpm' \
--exclude='jellyfin-server-$(VERSION).tar.gz' \
-czf "jellyfin-server-$(VERSION).tar.gz" \
-C $${SOURCE_DIR} ./
cd fedora/; \
rpmbuild -bs jellyfin.spec \
--define "_sourcedir $$PWD/" \