mirror of
https://github.com/archlinux/aur.git
synced 2026-01-27 20:28:31 +01:00
12 lines
253 B
Bash
Executable file
12 lines
253 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# This script defines functions for the PKGBUILD.
|
|
|
|
# Variables
|
|
## Colours
|
|
declare -r clear_colour="\033[0m"
|
|
declare -r green="\033[0;32m"
|
|
|
|
pre_install()
|
|
{
|
|
echo -e "${green}Plugins need to be installed manually.${clear_colour}"
|
|
}
|