summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2011-08-16 18:33:24 +0200
committerDan McGee <dan@archlinux.org>2011-08-16 18:47:53 +0200
commitcea6d7eb13e548cd148e42faebd81f6f219b0fb0 (patch)
treef64e653184eedd2ea43ddc14591bb26a3b4a1940 /doc
parent70db02720424a6b674f39115cc0b1c22975a7491 (diff)
downloadpacman-cea6d7eb13e548cd148e42faebd81f6f219b0fb0.tar.gz
pacman-cea6d7eb13e548cd148e42faebd81f6f219b0fb0.tar.xz
doc/PKGBUILD: fix Asciidoc formatting issues
We had this gem: ⇐ (less than or equal to) Due to not ensuring we did literal printing of things like this. Fix it and a few other problems noticed scanning through both the HTML and manpage generated files. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'doc')
-rw-r--r--doc/PKGBUILD.5.txt12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/PKGBUILD.5.txt b/doc/PKGBUILD.5.txt
index af3a3880..a41e0ae3 100644
--- a/doc/PKGBUILD.5.txt
+++ b/doc/PKGBUILD.5.txt
@@ -117,7 +117,7 @@ name. The syntax is: `source=('filename::url')`.
This array contains an MD5 hash for every source file specified in the
source array (in the same order). makepkg will use this to verify source
file integrity during subsequent builds. To easily generate md5sums, run
- ``makepkg -g >> PKGBUILD''. If desired, move the md5sums line to an
+ `makepkg -g >> PKGBUILD`. If desired, move the md5sums line to an
appropriate location.
*sha1sums, sha256sums, sha384sums, sha512sums (arrays)*::
@@ -134,7 +134,7 @@ name. The syntax is: `source=('filename::url')`.
*arch (array)*::
Defines on which architectures the given package is available (e.g.,
`arch=('i686' 'x86_64')`). Packages that contain no architecture specific
- files should use arch=('any').
+ files should use `arch=('any')`.
*backup (array)*::
An array of filenames, without preceding slashes, that
@@ -146,9 +146,9 @@ name. The syntax is: `source=('filename::url')`.
An array of packages this package depends on to run. Entries in
this list should be surrounded with single quotes and contain at least
the package name. Entries can also include a version requirement of the
- 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).
+ 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
@@ -187,7 +187,7 @@ disables auto detection.
depend on 'cron' rather than 'dcron OR fcron'.
Versioned provisions are also possible, in the 'name=version' format.
For example, dcron can provide 'cron=2.0' to satisfy the 'cron>=2.0'
- dependency of other packages. Provisions involving the '>' and '<'
+ dependency of other packages. Provisions involving the `>` and `<`
operators are invalid as only specific versions of a package may be
provided.
+