blob: 9cfe5c0d4e2feae4557be822e95169f2f0938f4b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
;;; simple-two-depend.el --- A single-file package with two dependencies.
;; Author: J. R. Hacker <jrh@example.com>
;; Version: 1.1
;; Keywords: frobnicate
;; Package-Requires: ((simple-depend "1.0") (simple-single "1.3"))
;;; Commentary:
;; Depends on two another packages.
;;; Code:
(defvar simple-two-depend "Value"
"Some trivial code")
;;; simple-two-depend.el ends here
|