Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .qubesbuilder
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,6 @@ vm:
deb:
build:
- debian
archlinux:
build:
- archlinux
27 changes: 27 additions & 0 deletions archlinux/PKGBUILD.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
#!/bin/bash
pkgname=qubes-repo-templates
pkgver=@VERSION@
pkgrel=@REL@
pkgdesc="Repository definition for Qubes OS VM template packages"
arch=("x86_64")
url="https://qubes-os.org/"
license=('GPL')
depends=()
makedepends=(make)

_pkgnvr="${pkgname}-${pkgver}-${pkgrel}"
changelog=debian/changelog
source=("${_pkgnvr}.tar.gz")
md5sums=(SKIP)

build() {
cd "${_pkgnvr}"
}

package() {
cd "${_pkgnvr}"
# shellcheck disable=SC2154
make -C repos install DESTDIR="$pkgdir"
}

# vim:set tabstop=4 shiftwidth=4 softtabstop=4 expandtab: