-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlinux-packaging-tests.asd
More file actions
41 lines (38 loc) · 1.43 KB
/
linux-packaging-tests.asd
File metadata and controls
41 lines (38 loc) · 1.43 KB
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
(defsystem "linux-packaging-tests"
:description "A minimal system to test the packaging."
:defsystem-depends-on ("wild-package-inferred-system")
:class "winfer:wild-package-inferred-system"
:depends-on ("linux-packaging-tests/t/*"))
(defsystem "linux-packaging-tests/rpm"
:defsystem-depends-on ("linux-packaging")
:class "linux-packaging:rpm"
:depends-on ("linux-packaging-tests")
:build-operation "linux-packaging:build-op"
:package-name "random-name"
:verbose t
:version #.(format nil "1.2.3")
:additional-dependencies ("emacs")
:build-pathname "other-random-name"
:entry-point "linux-packaging-tests/t/main:main")
(defsystem "linux-packaging-tests/deb"
:defsystem-depends-on ("linux-packaging")
:class "linux-packaging:deb"
:depends-on ("linux-packaging-tests")
:build-operation "linux-packaging:build-op"
:package-name "random-name"
:verbose t
:version #.(format nil "1.2.3")
:additional-dependencies ("emacs")
:build-pathname "other-random-name"
:entry-point "linux-packaging-tests/t/main:main")
(defsystem "linux-packaging-tests/pacman"
:defsystem-depends-on ("linux-packaging")
:class "linux-packaging:pacman"
:depends-on ("linux-packaging-tests")
:build-operation "linux-packaging:build-op"
:package-name "random-name"
:verbose t
:version #.(format nil "1.2.3")
:additional-dependencies ("emacs")
:build-pathname "other-random-name"
:entry-point "linux-packaging-tests/t/main:main")