blob: 71c1bad02b0864cc51ecbc442eb2a6e655aa0eee (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
 | ;;; jao-skel-asdf.el --- Skels for ASDF system definition files  -*- lexical-binding: t; -*-
;; Copyright (C) 2007, 2022  Jose Antonio Ortega Ruiz
;; Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
;; Keywords: lisp
;; This file is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2, or (at your option)
;; any later version.
;; This file is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs; see the file COPYING.  If not, write to
;; the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
;; Boston, MA 02110-1301, USA.
;;; Code:
(require 'jao-skel)
(define-skeleton jao-skel-asdf-file
  "ASDF file header"
  "Description: "
  '(setq sys (jao-skel-basename))
  '(lisp-mode)
  ";; -*- lisp -*- " sys " definition"
  \n \n
  "(defpackage " sys "-system" \n "  (:use :common-lisp :asdf))"
  \n \n
  "(in-package " sys "-system)"
  \n \n
  "(defsystem " sys
  > \n ":description \"" str "\""
  > \n ":version \"0.1\""
  > \n ":author \"" (user-full-name) " <" user-mail-address ">\""
  > \n ":maintainer \"" (user-full-name) " <" user-mail-address ">\""
  > \n ":licence \"GPL\""
  > \n ":depends-on ()"
  > \n ":components ((:file \"packages\")))"
  \n \n)
(add-to-list 'auto-insert-alist '("\\.asd\\'" . jao-skel-asdf-file))
(provide 'jao-skel-asdf)
;;; jao-skel-asdf.el ends here
 |