File tree Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Original file line number Diff line number Diff line change 99 deb:
1010 build:
1111 - debian
12+ archlinux:
13+ build:
14+ - archlinux
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ pkgname=qubes-core-admin-client
3+ pkgver=@VERSION@
4+ pkgrel=@REL@
5+ pkgdesc=" This package include management tools, like qvm-*."
6+ arch=(" x86_64" )
7+ url=" https://qubes-os.org/"
8+ license=(' GPL' )
9+ depends=(
10+ ' scrypt'
11+ ' xorg-xrandr'
12+ ' python-setuptools'
13+ ' python-yaml'
14+ )
15+ makedepends=(make)
16+
17+ _pkgnvr=" ${pkgname} -${pkgver} -${pkgrel} "
18+ changelog=debian/changelog
19+ source=(" ${_pkgnvr} .tar.gz" )
20+ md5sums=(SKIP)
21+
22+ build () {
23+ cd " ${_pkgnvr} "
24+ make clean all
25+ }
26+
27+ package () {
28+ cd " ${_pkgnvr} "
29+ # shellcheck disable=SC2154
30+ make install DESTDIR=" $pkgdir "
31+ }
32+
33+ # vim:set tabstop=4 shiftwidth=4 softtabstop=4 expandtab:
You can’t perform that action at this time.
0 commit comments