summaryrefslogtreecommitdiff
path: root/pcr/waf/building-waf.md
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2020-01-21 01:02:25 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2020-01-21 01:02:25 -0500
commitdcd69ebfad09c17b320c5f124bf280615333a051 (patch)
tree71d43e9a6adef58b1bf6f99ff6aebe703ca73e33 /pcr/waf/building-waf.md
parent7bb45d7a7b600709da6f0b1d7b608d1a0bd85053 (diff)
downloadabslibre-dcd69ebfad09c17b320c5f124bf280615333a051.tar.gz
abslibre-dcd69ebfad09c17b320c5f124bf280615333a051.tar.bz2
abslibre-dcd69ebfad09c17b320c5f124bf280615333a051.zip
Removing waf: This package is in [community] repo
Diffstat (limited to 'pcr/waf/building-waf.md')
-rw-r--r--pcr/waf/building-waf.md14
1 files changed, 0 insertions, 14 deletions
diff --git a/pcr/waf/building-waf.md b/pcr/waf/building-waf.md
deleted file mode 100644
index 3cbe1a0e2..000000000
--- a/pcr/waf/building-waf.md
+++ /dev/null
@@ -1,14 +0,0 @@
-# Building a custom waf binary
-
-Waf is primarily intended to be distributed with the project using it. The Arch Linux package makes waf usable directly, but also brings all files necessary to compose a custom binary for your project. To do so, create a temporary directory, link all the necessary resources together and build it.
-
-cd $(mktemp -d)
-ln -s /usr/share/waf/wscript .
-ln -s /usr/bin/waf waf-light
-ln -s /usr/lib/waf/waflib .
-mkdir zip
-waf configure build --make-waf --tools=''
-
-The last line allows you to choose tools to include.
-
-After this process, there should be a `waf` binary ready in the current working directory.