From 8e18e56e08c156dd2bafbd74ffdb8ac44e441493 Mon Sep 17 00:00:00 2001 From: Jay Larson Date: Sun, 23 Aug 2020 21:02:30 -0500 Subject: [PATCH] Moved to slp format --- Makefile | 9 +++++---- {SNAP => SL}/README | 0 2 files changed, 5 insertions(+), 4 deletions(-) rename {SNAP => SL}/README (100%) diff --git a/Makefile b/Makefile index 8615271..82dee93 100644 --- a/Makefile +++ b/Makefile @@ -11,17 +11,18 @@ DEPENDS = glibc,ncurses ARCH = x86_64 URL = http://ex-vi.sourceforge.net/ +REPO = main BRIEF = Text editor DESC = The vi editor is one of the most common text editors on Unix. -SNAPVER = 8 +SLVER = 9 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)/Makefile: $(ARCHIVE) @if [ '$(TYPE)' == 'application/x-bzip2' ]; then \ @@ -58,7 +59,7 @@ $(ROOT): $(SRCDIR)/ex 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