view README.md @ 23:3c0254e7ecb0

lib/libpng: initial import, closes #1105
author David Demelier <markand@malikania.fr>
date Sun, 24 Feb 2019 10:45:27 +0100
parents 719eed6940e0
children 0468f47a45ce
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/pkg/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).