Commit 50757e6 1 parent 972d0b8 commit 50757e6 Copy full SHA for 50757e6
File tree 2 files changed +30
-0
lines changed
2 files changed +30
-0
lines changed Original file line number Diff line number Diff line change 9
9
deb:
10
10
build:
11
11
- debian
12
+ archlinux:
13
+ build:
14
+ - archlinux
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+ pkgname=qubes-repo-templates
3
+ pkgver=@VERSION@
4
+ pkgrel=@REL@
5
+ pkgdesc=" Repository definition for Qubes OS VM template packages"
6
+ arch=(" x86_64" )
7
+ url=" https://qubes-os.org/"
8
+ license=(' GPL' )
9
+ depends=()
10
+ makedepends=(make)
11
+
12
+ _pkgnvr=" ${pkgname} -${pkgver} -${pkgrel} "
13
+ changelog=debian/changelog
14
+ source=(" ${_pkgnvr} .tar.gz" )
15
+ md5sums=(SKIP)
16
+
17
+ build () {
18
+ cd " ${_pkgnvr} "
19
+ }
20
+
21
+ package () {
22
+ cd " ${_pkgnvr} "
23
+ # shellcheck disable=SC2154
24
+ make -C repos install DESTDIR=" $pkgdir "
25
+ }
26
+
27
+ # vim:set tabstop=4 shiftwidth=4 softtabstop=4 expandtab:
You can’t perform that action at this time.
0 commit comments