view README.md @ 1176:e45b5d1810ab

lang/rust: initial import, closes #1097
author David Demelier <markand@malikania.fr>
date Wed, 23 Oct 2019 07:10:36 +0200
parents a133976e0783
children 53cb989f05ad
line wrap: on
line source

Vanilla Linux
=============

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

This source tree is usually only required for Vanilla Linux development, end
users who just want to rebuild binary packages should use `vpk` and rebuild
source package from the repository.

Usage
=====

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

Example with zlib:

	$ cd compression/zlib
	$ vpk download
	$ vpk build

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

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

Options
=======

Check the variable *PKGOPTIONS* in the build script file, if there is one it
means the package is configurable with options.

Specify environment variables before calling `vpk build`.

Example:

	$ PULSEAUDIO=no vpk build

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