blob: ef2282bcc1a577369bd8c6b97bfa8c9a4abe2bd9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Maintainer: TheOddCell <rayfb.to.1@gmail.com>
pkgname=tmpgentoo
pkgver=1.0.0
pkgrel=1
pkgdesc="Part of the tmplinux suite. Temporary gentoo Linux"
arch=('any')
url="https://github.com/TheOddCell/tmpgentoo"
license=('MIT')
depends=('bash' 'tar' 'ncurses' 'xz' 'curl' 'shadow' 'util-linux' 'systemd' 'squashfs-tools')
makedepends=()
source=("https://github.com/TheOddCell/tmpgentoo/archive/refs/tags/v$pkgver.tar.gz")
sha256sums=('SKIP')
package() {
cd "$srcdir/tmpgentoo-$pkgver"
install -Dm755 tmpgentoo "$pkgdir/usr/bin/tmpgentoo"
}
|