diff options
author | Florian Pritz <bluewind@xinu.at> | 2011-06-04 17:28:45 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2011-06-09 23:18:23 +0200 |
commit | 5689478c68bdda8ecbe0eae9a5bd28b072632b26 (patch) | |
tree | 28c16037f23f2d35da4d0fbba22782b08c75d305 /doc/PKGBUILD.5.txt | |
parent | 73d5eb1edf03e628ca1d3a09168e4e940adea914 (diff) | |
download | pacman-5689478c68bdda8ecbe0eae9a5bd28b072632b26.tar.gz pacman-5689478c68bdda8ecbe0eae9a5bd28b072632b26.tar.xz |
doc/PKGBUILD: document libdeps
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'doc/PKGBUILD.5.txt')
-rw-r--r-- | doc/PKGBUILD.5.txt | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/PKGBUILD.5.txt b/doc/PKGBUILD.5.txt index c0fa5948..b9b7855b 100644 --- a/doc/PKGBUILD.5.txt +++ b/doc/PKGBUILD.5.txt @@ -150,6 +150,11 @@ name. The syntax is: `source=('filename::url')`. form 'name<>version', where <> is one of five comparisons: >= (greater than or equal to), <= (less than or equal to), = (equal to), > (greater than), or < (less than). ++ +If the dependency name appears to be a library (ends with .so), makepkg will +try to find a binary that depends on the library in the built package and +append the version needed by the binary. Appending the version yourself +disables auto detection. *makedepends (array)*:: An array of packages that this package depends on to build, but are not @@ -186,6 +191,10 @@ name. The syntax is: `source=('filename::url')`. dependency of other packages. Provisions involving the '>' and '<' operators are invalid as only specific versions of a package may be provided. ++ +If the provision name appears to be a library (ends with .so), makepkg will +try to find the library in the built package and append the correct +version. Appending the version yourself disables auto detection. *replaces (array)*:: An array of packages that this package should replace, and can be used |