3 Commits

Author SHA1 Message Date
Jay Larson
92980232a6 Moved to slp format, also removed sysvinit dependency (unsure why it was there) 2020-08-23 08:20:52 -05:00
Jay Larson
b9d20d9c88 Added dependency on initscripts 2018-09-30 18:38:04 -05:00
Jay Larson
1dc127757c Added dependency on sysvinit 2018-09-30 18:25:30 -05:00
5 changed files with 7 additions and 7 deletions

View File

@@ -9,20 +9,20 @@
# GNU General Public License for more details. # GNU General Public License for more details.
ARCH = x86_64 ARCH = x86_64
DEPENDS = dash,glibc DEPENDS = dash,glibc,initscripts
BUILDDEPS = BUILDDEPS =
URL = http://ftp.isc.org/isc/cron/ URL = http://ftp.isc.org/isc/cron/
REPO = main REPO = main
BRIEF = daemon to execute scheduled commands BRIEF = daemon to execute scheduled commands
DESC = An implimentation of cron based on the SysV cron (aka Vixie cron) DESC = An implimentation of cron based on the SysV cron (aka Vixie cron)
SNAPVER = 2 SLVER = 5
ARCHIVE := $(PWD)/$(shell ls SRC/*.shar|tail -1) ARCHIVE := $(PWD)/$(shell ls SRC/*.shar|tail -1)
SRCDIR := cron-$(shell echo $(ARCHIVE)|egrep -o '[0-9]\.[0-9]') SRCDIR := cron-$(shell echo $(ARCHIVE)|egrep -o '[0-9]\.[0-9]')
PATCHDIR := $(PWD)/SRC/patches 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) $(SRCDIR)/Makefile: $(ARCHIVE)
@install -v -d $(SRCDIR) ./ && \ @install -v -d $(SRCDIR) ./ && \
@@ -63,8 +63,8 @@ $(ROOT): $(SRCDIR)/cron
install -v -m 644 crontab.1 $(ROOT)/usr/share/man/man1/crontab.1 && \ install -v -m 644 crontab.1 $(ROOT)/usr/share/man/man1/crontab.1 && \
install -v -m 644 crontab.5 $(ROOT)/usr/share/man/man5/crontab.5 && \ install -v -m 644 crontab.5 $(ROOT)/usr/share/man/man5/crontab.5 && \
install -v -m 644 cron.8 $(ROOT)/usr/share/man/man8/cron.8 && \ install -v -m 644 cron.8 $(ROOT)/usr/share/man/man8/cron.8 && \
install -v -m 755 $(SNAPDIR)/cron.init $(ROOT)/etc/init.d/cron && \ install -v -m 755 $(SLDIR)/cron.init $(ROOT)/etc/init.d/cron && \
install -v -m 755 $(SNAPDIR)/runall $(ROOT)/bin install -v -m 755 $(SLDIR)/runall $(ROOT)/bin
test: $(ROOT) test: $(ROOT)
@cd $(SRCDIR); \ @cd $(SRCDIR); \
@@ -72,7 +72,7 @@ test: $(ROOT)
clean: clean:
@rm -rvf $(ROOT) \ @rm -rvf $(ROOT) \
$(SNAPINFO) \ $(SLINFO) \
$(MANIFEST) \ $(MANIFEST) \
$(FILES) \ $(FILES) \
$(CONFIG) \ $(CONFIG) \