view README.info.md @ 235:5271bd2ea9c4

x11/libxxf86dga: initial import, closes #1332
author David Demelier <markand@malikania.fr>
date Wed, 20 Mar 2019 22:08:00 +0100
parents e8fb94b9551d
children
line wrap: on
line source

vanilla info files
==================

In package directories, you'll find *name.info* files. They contains metadata
information about a given package.

The following variables are required:

- PKGNAME: canonical package name
- PKGVERSION: package upstream version
- PKGREVISION: vanilla package revision (starts at 1)
- PKGLICENSE: software license (see README.licenses.md)
- PKGSUMMARY: a short summary
- PKGDOWNLOAD: a space separated list of files to download

Dependencies
============

Package dependencies are filled in the *PKGDEPENDS* variables. Dependencies are
specified using the full directory name to the missing package.

If a package is only required at build time, add the ":build" suffix.

Example:

```sh
PKGDEPENDS="dev/cmake:build libzlib"
```

Options
=======

If a package support options, specify the documentation about those in the
README file of the given package. Also add all options as a space separated list
in the *PKGOPTIONS* variable.

Example:

```sh
PKGOPTIONS="PULSEAUDIO BLUETOOTH"
```

Also see README.options.md for a list of predefined options. Do not write your
own if it already exists.