Package Details: hostctl-bin 1.1.4-1

Git Clone URL: https://aur.archlinux.org/hostctl-bin.git (read-only, click to copy)
Package Base: hostctl-bin
Description: Command-line tool to manage your hosts file
Upstream URL: https://github.com/guumaster/hostctl
Licenses: MIT
Conflicts: hostctl
Provides: hostctl
Submitter: barbuk
Maintainer: barbuk (guumaster)
Last Packager: barbuk
Votes: 0
Popularity: 0.000000
First Submitted: 2020-04-14 10:42 (UTC)
Last Updated: 2023-06-24 05:54 (UTC)

Latest Comments

Dulbi commented on 2021-12-17 14:08 (UTC)

Maye you could provide a multi architecture package ? aarch64 is available. Here is a patch I've tested diff --git a/PKGBUILD b/PKGBUILD index a306518..40a1b71 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,13 +4,15 @@ pkgname=hostctl-bin pkgver=1.1.1 pkgrel=1 pkgdesc='Command-line tool to manage your hosts file' -arch=('x86_64') +arch=('x86_64' 'aarch64') url='https://github.com/guumaster/hostctl' license=('MIT') provides=("${pkgname%-bin}") conflicts=("${pkgname%-bin}") -source=("$url/releases/download/v$pkgver/${pkgname%-bin}${pkgver}_linux_64-bit.tar.gz") -sha256sums=('85951c9aaba3761befcf280786bd7dc98d13a8413f394721db3f76079e59bd24') +source_x86_64=("$url/releases/download/v$pkgver/${pkgname%-bin}${pkgver}linux_64-bit.tar.gz") +source_aarch64=("$url/releases/download/v$pkgver/${pkgname%-bin}${pkgver}_linux_arm64.tar.gz") +sha256sums_x86_64=('85951c9aaba3761befcf280786bd7dc98d13a8413f394721db3f76079e59bd24') +sha256sums_aarch64=('41e4e263a4c438697064975fa8ee3f6cf93aa46b7a6cfcf9d3efb6a465a0fc00')

package() { install -Dm644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname%-bin}/"