From: Bastian Dehn Date: Sat, 26 Sep 2026 16:03:14 +0000 (+0200) Subject: add set perms for file X-Git-Tag: v1.0.0^2~1^2~3 X-Git-Url: https://gitweb.hhaalo.de/?a=commitdiff_plain;h=e6f8e4413e2cf2f388e0457f8e645dd4c51fd7d8;p=albentohandy.git add set perms for file --- diff --git a/Makefile b/Makefile index 2020de1..44794f8 100644 --- a/Makefile +++ b/Makefile @@ -34,39 +34,47 @@ clean: $(BUILDDIR)/$(PACKAGE)/$(BINDIR)/albentohandy: mkdir --parents $(@D) sed 's/# LIB_PATH/LIB_PATH/' $(SRCDIR)/albentohandy > $(@) + chmod 755 $(@) shellcheck $(@) $(BUILDDIR)/$(PACKAGE)/$(LIBDIR)/vorbis.sh: mkdir --parents $(@D) cp $(SRCDIR)/lib/vorbis.sh $(@) + chmod 755 $(@) shellcheck $(@) $(BUILDDIR)/$(PACKAGE)/$(LIBDIR)/mp3.sh: mkdir --parents $(@D) cp $(SRCDIR)/lib/mp3.sh $(@) + chmod 755 $(@) shellcheck $(@) $(BUILDDIR)/$(PACKAGE)/$(LIBDIR)/opus.sh: mkdir --parents $(@D) cp $(SRCDIR)/lib/opus.sh $(@) + chmod 755 $(@) shellcheck $(@) $(BUILDDIR)/$(PACKAGE)/$(LIBDIR)/flac.sh: mkdir --parents $(@D) cp $(SRCDIR)/lib/flac.sh $(@) + chmod 755 $(@) shellcheck $(@) $(BUILDDIR)/$(PACKAGE)/$(SHAREDIR)/albentohandy.conf: mkdir --parents $(@D) cp $(SRCDIR)/albentohandy.conf $(@) + chmod 644 $(@) $(BUILDDIR)/$(PACKAGE)/$(SHAREDIR)/copyright: mkdir --parents $(@D) cp $(SRCDIR)/debian/copyright $(@) + chmod 644 $(@) $(BUILDDIR)/$(PACKAGE)/$(SHAREDIR)/changelog.gz: mkdir --parents $(@D) gzip --stdout --no-name --best $(SRCDIR)/debian/changelog > $(@) + chmod 644 $(@) $(BUILDDIR)/$(PACKAGE)/DEBIAN/control: mkdir --parents $(@D)