mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-22 12:31:32 +00:00
Keep the assets/ files; ignore the assets/debian/tmp files in source packaging
This commit is contained in:
parent
6a80cc60b6
commit
f6bde1844e
2 changed files with 4 additions and 9 deletions
|
@ -49,7 +49,7 @@ build:
|
||||||
# This will need to be updated every time SRB2 official version is
|
# This will need to be updated every time SRB2 official version is
|
||||||
# Copy data files to their install locations, and add data files to include-binaries
|
# Copy data files to their install locations, and add data files to include-binaries
|
||||||
for file in $(DATAFILES); do \
|
for file in $(DATAFILES); do \
|
||||||
if [ ! -f $(RESOURCEDIR)/$$file ] && [ ! -f $(RESOURCEDIR)/debian/tmp/$(DATADIR)/$$file ]; then \
|
if [ ! -f $(RESOURCEDIR)/$$file ]; then \
|
||||||
$(WGET) http://alam.srb2.org/SRB2/2.1.21-Final/Resources/$$file; \
|
$(WGET) http://alam.srb2.org/SRB2/2.1.21-Final/Resources/$$file; \
|
||||||
fi; \
|
fi; \
|
||||||
if [ -f $(RESOURCEDIR)/$$file ]; then \
|
if [ -f $(RESOURCEDIR)/$$file ]; then \
|
||||||
|
@ -58,15 +58,9 @@ build:
|
||||||
else \
|
else \
|
||||||
$(INSTALL) $(RESOURCEDIR)/$$file $(DIR)/debian/tmp/$(DATADIR)/$$file; \
|
$(INSTALL) $(RESOURCEDIR)/$$file $(DIR)/debian/tmp/$(DATADIR)/$$file; \
|
||||||
fi; \
|
fi; \
|
||||||
fi; \
|
echo $(RESOURCEDIR)/$$file >> $(DIR)/debian/source/include-binaries; \
|
||||||
if [ -f $(RESOURCEDIR)/debian/tmp/$(DATADIR)/$$file ]; then \
|
|
||||||
if test "$$file" = "srb2.wad"; then \
|
|
||||||
echo $(RESOURCEDIR)/debian/tmp/$(DATADIR)/srb2.srb >> $(DIR)/debian/source/include-binaries; \
|
|
||||||
else \
|
else \
|
||||||
echo $(RESOURCEDIR)/debian/tmp/$(DATADIR)/$$file >> $(DIR)/debian/source/include-binaries; \
|
echo $(DIR)/$$file not found and could not be downloaded!; \
|
||||||
fi; \
|
|
||||||
else \
|
|
||||||
echo $(RESOURCEDIR)/debian/tmp/$(DATADIR)/$$file not found and could not be downloaded!; \
|
|
||||||
return 1; \
|
return 1; \
|
||||||
fi; \
|
fi; \
|
||||||
done
|
done
|
||||||
|
|
1
assets/debian/source/options
Normal file
1
assets/debian/source/options
Normal file
|
@ -0,0 +1 @@
|
||||||
|
tar-ignore = "tmp/*"
|
Loading…
Reference in a new issue