view README.md @ 58:73fe5cec3773

lib/gmp: initial import, closes #1153
author David Demelier <markand@malikania.fr>
date Fri, 01 Mar 2019 19:43:54 +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).