diff --git a/distrobox/.SRCINFO b/distrobox/.SRCINFO new file mode 100644 index 0000000..4a0ec5d --- /dev/null +++ b/distrobox/.SRCINFO @@ -0,0 +1,13 @@ +pkgbase = distrobox + pkgdesc = Use any linux distribution inside your terminal. + pkgver = 1.3.1 + pkgrel = 1 + url = https://github.com/89luca89/distrobox + arch = any + license = GPL3 + optdepends = docker: enable docker usage + optdepends = podman: enable podman usage + source = distrobox-1.3.1.tar.gz::https://github.com/89luca89/distrobox/archive/1.3.1.tar.gz + sha256sums = 22b6625ca243f55c08630d37015cdbfbe1939516022bfef502aa6603f42b4d00 + +pkgname = distrobox diff --git a/distrobox/.gitrepo b/distrobox/.gitrepo new file mode 100644 index 0000000..a1923c4 --- /dev/null +++ b/distrobox/.gitrepo @@ -0,0 +1,12 @@ +; DO NOT EDIT (unless you know what you are doing) +; +; This subdirectory is a git "subrepo", and this file is maintained by the +; git-subrepo command. See https://github.com/git-commands/git-subrepo#readme +; +[subrepo] + remote = https://aur.archlinux.org/distrobox.git + branch = master + commit = fe621fcf78b2012bab7376292ad9a07e7932d1b6 + parent = 0e993be25d08c590b540b7350a33b523c7f9abfe + method = merge + cmdver = 0.4.3 diff --git a/distrobox/PKGBUILD b/distrobox/PKGBUILD new file mode 100644 index 0000000..bde5082 --- /dev/null +++ b/distrobox/PKGBUILD @@ -0,0 +1,21 @@ +# Maintainer: robertfoster + +pkgname=distrobox +pkgver=1.3.1 +pkgrel=1 +pkgdesc="Use any linux distribution inside your terminal." +arch=('any') +url="https://github.com/89luca89/distrobox" +license=('GPL3') +optdepends=( + 'docker: enable docker usage' + 'podman: enable podman usage' +) +source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz") + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./install -P "${pkgdir}/usr" +} + +sha256sums=('22b6625ca243f55c08630d37015cdbfbe1939516022bfef502aa6603f42b4d00')