Translations:PKGBUILD/21/en
depends
An array of package names that must be installed before this software can be run. Version restrictions can be specified with comparison operators, e.g. depends=('foobar>=1.8.0')
; if multiple restrictions are needed, the dependency can be repeated for each of them [1], e.g. depends=('foobar>=1.8.0' 'foobar<2.0.0')
. You do not need to list packages that your software depends on if other packages your software depends on already have those packages listed in their dependency. For instance, gtk2
depends on glib2
and glibc
. However, glibc
does not need to be listed as a dependency for gtk2
because it is a dependency for glib2
.