Date: Friday, March 24, 2023 @ 15:25:14 Author: orhun Revision: 1427708
addpkg: alpine-chroot-install 0.14.0-2 Added: alpine-chroot-install/ alpine-chroot-install/repos/ alpine-chroot-install/trunk/ alpine-chroot-install/trunk/PKGBUILD ----------+ PKGBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) Added: alpine-chroot-install/trunk/PKGBUILD =================================================================== --- alpine-chroot-install/trunk/PKGBUILD (rev 0) +++ alpine-chroot-install/trunk/PKGBUILD 2023-03-24 15:25:14 UTC (rev 1427708) @@ -0,0 +1,26 @@ +# Maintainer: Orhun Parmaksız <[email protected]> +# Contributor: noobping <[email protected]> + +pkgname=alpine-chroot-install +pkgver=0.14.0 +pkgrel=2 +pkgdesc="Install Alpine Linux in chroot with a breeze" +arch=('any') +url="https://github.com/alpinelinux/alpine-chroot-install" +license=('GPL2') +depends=('coreutils' 'sh') +optdepends=( + 'qemu-user: for emulation of different architecture' + 'qemu-user-binfmt-provider: for emulation of different architecture' +) +source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz") +sha512sums=('b94f52ee7b96256c36a699e95c99c755061392d1d4ddfa62dc1fcd3acca024a636d90aa5cd6f886ea0757d4bc3110ebd8d50e61832b7c52b869edeb884b21046') + +package() { + cd "$pkgname-$pkgver" + install -Dm 755 "$pkgname" -t "$pkgdir/usr/bin" + install -Dm 644 README.adoc -t "$pkgdir/usr/share/doc/$pkgname" + install -Dm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname" +} + +# vim:set ts=2 sw=2 et:
