summaryrefslogtreecommitdiff
path: root/is_built
blob: f789e4f9bdc1a76f7e55de6f440a362f82e36c3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash
# Detect is a package is installed or in a database

# Checks for package, if -T returns non-zero output, egrep will return 0
# because it finds it, so we negate the value to say it's not built.
# -Sp works backwards, it will print output only when the package already
# exists
# Example usage: is_built "pcre>=20"
!(sudo pacman -T "$1" | egrep "*" >/dev/null) || \
sudo pacman -Sp "$1" --print-format "%n-%v" 2>/dev/null | egrep "*" >/dev/null

exit $?