diff options
author | Matthew Anderson | 2023-07-10 22:16:41 -0500 |
---|---|---|
committer | Matthew Anderson | 2023-07-10 22:16:41 -0500 |
commit | 55edfa3e41d1c24bcf5bc0e013f9c954da85a0fc (patch) | |
tree | ecf3ee9bd36c84b706a93ea671345afc49c584e0 /PKGBUILD | |
parent | 611e00a76c8c6b3abcabc1a2789bc66e8b70f11b (diff) | |
download | aur-55edfa3e41d1c24bcf5bc0e013f9c954da85a0fc.tar.gz |
Fix an issue where /usr/bin files weren't installed
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,7 +1,7 @@ # Maintainer: Samsagax <samsagax at gmail dot com> _pkgbase=chimeraos-device-quirks pkgname=${_pkgbase}-git -pkgver=r113.7d4de48 +pkgver=r149.16d8bb7 pkgrel=1 pkgdesc="A collection of device specific configuration files" arch=('any') @@ -37,6 +37,10 @@ package() { # Install python modules python -m installer --destdir="$pkgdir" dist/*.whl + + # Install binaries + install -v -m644 -D -t "${pkgdir}/usr/bin/" usr/bin/* + install -v -m644 -D -t "${pkgdir}/usr/bin/" usr/bin/* # Install module tweaks install -v -m644 -D -t "${pkgdir}/usr/lib/modprobe.d/" usr/lib/modprobe.d/* |