view README.md @ 140:ef65bd5eb573

lib: merge .sh and .info
author David Demelier <markand@malikania.fr>
date Mon, 11 Mar 2019 16:33:11 +0100
parents 0468f47a45ce
children 7b000befead5
line wrap: on
line source

vanilla
=======

Welcome to the vanilla source tree. This directory contains scripts to build
precompiled packages for vanilla.

Usage
=====

To build a script, go to the desired directory and use `vpk download` and `vpk
build`.

The `vpk` tool does not handle dependencies so you will need to install them
manually first.

Example with zlib:

	$ cd lib/zlib
	$ vpk download
	$ vpk build

Then if build succeeded, you may install the package in /tmp/vpk/pkg.

	$ vpk install /tmp/vpk/zlib*.txz

Options
=======

If the package contains a README.options.md file, it may supports options.
Specify environment variables before calling `vpk build`.

Example:

    $ PULSEAUDIO=no vpk build

Note: boolean options are set using *no* and *yes* (case sensitive).