You are not logged in.
Pages: 1
E.g: fonts can be installed per user in "$HOME"/.local/share/fonts. One can have a modified PKGBUILD like this:
pkgname=ttf-roboto
pkgver=2.138
pkgrel=4
pkgdesc="Google's signature family of fonts"
url='https://material.google.com/style/typography.html'
arch=('any')
license=('Apache')
source=(https://sources.archlinux.org/other/packages/ttf-roboto/ttf-roboto-hinted-$pkgver.zip)
sha256sums=('07450a24476bced534a8afbd89595302a532e9348ca6c82f4b13c437a309a34c')
package() {
mkdir -p "$pkgdir"/"$HOME"/.local/share/fonts/TTF
install -Dm644 *.ttf -t "$pkgdir"/"$HOME"/.local/share/fonts/TTF
}
Yet, makepkg -si still requires password.
Offline
Packages can't go to $HOME. If you can't take it to a different machine with different users, install it, and use it, it's not a valid package.
Offline
Pages: 1