From 3201497fc4461adec011734e1d42b470617b4090 Mon Sep 17 00:00:00 2001 From: Jay Larson Date: Sun, 23 Aug 2020 08:29:07 -0500 Subject: [PATCH] Moved to slp format --- Makefile | 8 ++++---- {SNAP => SL}/README | 0 2 files changed, 4 insertions(+), 4 deletions(-) rename {SNAP => SL}/README (100%) diff --git a/Makefile b/Makefile index 1bece8e..5698289 100644 --- a/Makefile +++ b/Makefile @@ -16,15 +16,15 @@ REPO = core BRIEF = DASH is a POSIX-compliant shell DESC = DASH is a POSIX-compliant implementation of /bin/sh that aims \ to be as small as possible -SNAPVER = 0 +SLVER = 1 ARCHIVE := $(PWD)/SRC/$(shell ls SRC|egrep '(bz2|gz|tar|xz)$$'|tail -1) TYPE := $(shell file -ib $(ARCHIVE)|cut -d';' -f1|tr -d '\n') SRCDIR := $(shell tar -tf $(ARCHIVE)|head -1|sed 's/\/.*//') PATCHDIR := $(PWD)/SRC/patches -VERSION := $(shell echo $(SRCDIR)|egrep -o '\-[0-9].*'|sed 's/^-//')-$(SNAPVER) +VERSION := $(shell echo $(SRCDIR)|egrep -o '\-[0-9].*'|sed 's/^-//')-$(SLVER) -include /usr/share/snap/Makefile.snaplinux +include /usr/share/sl/Makefile.snaplinux $(SRCDIR)/configure: $(ARCHIVE) @if [ '$(TYPE)' == 'application/x-bzip2' ]; then \ @@ -73,7 +73,7 @@ test: $(ROOT) clean: @rm -rvf $(ROOT) \ - $(SNAPINFO) \ + $(SLINFO) \ $(MANIFEST) \ $(FILES) \ $(SRCDIR) diff --git a/SNAP/README b/SL/README similarity index 100% rename from SNAP/README rename to SL/README