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
12 lines
317 B
Plaintext
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
|
|
}
|