mcp210x-uart/aur/cp210xmanufacturing/cp210xmanufacturing.install
Ryan Malloy 7c04e0cb6a Add AUR package for cp210xmanufacturing library
PKGBUILD:
- Builds 64-bit shared/static libraries from Silicon Labs source
- Installs headers to /usr/include/cp210x/
- Includes udev rules for non-root device access

To build: cd aur/cp210xmanufacturing && makepkg -si
2026-01-30 10:33:28 -07:00

12 lines
317 B
Plaintext

post_install() {
echo ":: Add your user to the uucp group for non-root access:"
echo " sudo usermod -aG uucp \$USER"
echo ":: Reload udev rules:"
echo " sudo udevadm control --reload-rules"
echo ":: Re-plug your CP210x device for changes to take effect"
}
post_upgrade() {
post_install
}