diff options
author | Matthew Anderson | 2023-05-19 23:43:36 -0500 |
---|---|---|
committer | Matthew Anderson | 2023-05-19 23:43:36 -0500 |
commit | 71084e05a60e171a83139bdf934860c689c405f0 (patch) | |
tree | 192b79be580df80cfb00d1f0dc980e0644194fa1 /PKGBUILD | |
parent | 6d63b2c02ffae9f7c5cb658f19f590bb1d0ca11a (diff) | |
download | aur-71084e05a60e171a83139bdf934860c689c405f0.tar.gz |
Update device-quirks to match the git
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 14 |
1 files changed, 10 insertions, 4 deletions
@@ -1,13 +1,15 @@ # Maintainer: Samsagax <samsagax at gmail dot com> _pkgbase=chimeraos-device-quirks pkgname=${_pkgbase}-git -pkgver=r40.255d19f +pkgver=r79.d82771a pkgrel=1 pkgdesc="A collection of device specific configuration files" arch=('any') url="https://github.com/ChimeraOS/device-quirks" license=('MIT') -depends=('systemd' +depends=('acpica' + 'cpio' + 'systemd' 'swh-plugins' 'ryzenadj-controller-git') makedepends=('python-build' @@ -54,8 +56,12 @@ package() { install -v -m644 -D -t "${pkgdir}/usr/lib/sysctl.d/" usr/lib/sysctl.d/* #Install scripts - mkdir -p "${pkgdir}/etc/device-quirks" - cp -rv etc/device-quirks/* "${pkgdir}/etc/device-quirks/." + mkdir -p "${pkgdir}/usr/share/device-quirks" + cp -rv usr/share/device-quirks/* "${pkgdir}/usr/share/device-quirks/." + + #Install device-quirks config + mkdir -p "${pkgdir}/etc/" + cp etc/device-quirks.conf "${pkgdir}/etc/" # Install license install -v -m644 -D -t "${pkgdir}/usr/share/licenses/${_pkgbase}/" LICENSE |