Skip to content

Commit 866c3f4

Browse files
committed
Carton renamed to Cask.
1 parent 043d79f commit 866c3f4

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

Carton

Lines changed: 0 additions & 3 deletions
This file was deleted.

Cask

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
(package-file "drupal-mode.el")
2+
3+
(source marmalade)

Makefile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,21 +19,21 @@
1919

2020
.PHONY: all test clean install
2121

22-
CARTON?=carton
22+
CASK?=cask
2323
EMACS?=emacs
2424
TAR?=bsdtar
2525
PANDOC?=pandoc --atx-headers
2626

27-
VERSION?=$(shell $(CARTON) version)
27+
VERSION?=$(shell $(CASK) version)
2828

2929
ARCHIVE_NAME=drupal-mode
3030
PACKAGE_NAME=$(ARCHIVE_NAME)-$(VERSION)
3131

3232
all: $(PACKAGE_NAME).tar
3333

3434
test:
35-
$(CARTON) install
36-
$(CARTON) exec $(EMACS) --no-site-file --no-site-lisp --batch -L $(PWD) -l drupal-tests -f ert-run-tests-batch-and-exit
35+
$(CASK) install
36+
$(CASK) exec $(EMACS) --no-site-file --no-site-lisp --batch -L $(PWD) -l drupal-tests -f ert-run-tests-batch-and-exit
3737

3838
$(ARCHIVE_NAME).info: README.md
3939
$(PANDOC) -t texinfo $^ | makeinfo -o $@
@@ -42,7 +42,7 @@ README: README.md
4242
$(PANDOC) -t plain -o $@ $^
4343

4444
$(ARCHIVE_NAME)-pkg.el: $(ARCHIVE_NAME).el
45-
$(CARTON) package
45+
$(CASK) package
4646

4747
# create a tar ball in package.el format for uploading to http://marmalade-repo.org
4848
$(PACKAGE_NAME).tar: README $(ARCHIVE_NAME).el $(ARCHIVE_NAME)-pkg.el $(ARCHIVE_NAME).info dir drupal/*.el drupal-tests.el drush-make-mode.el
@@ -53,4 +53,4 @@ install: $(PACKAGE_NAME).tar
5353

5454
clean:
5555
$(RM) $(ARCHIVE_NAME).info $(ARCHIVE_NAME)-*.tar $(ARCHIVE_NAME)-pkg.el README
56-
$(RM) -r elpa
56+
$(RM) -r .cask

0 commit comments

Comments
 (0)