aboutsummarylogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorSpencer Rinehart2014-08-01 11:41:29 -0400
committerSpencer Rinehart2015-06-10 12:54:25 -0500
commit497df0d2aea89556d578d00780c829e9a1823d9d (patch)
tree510aab55e2a2405ba776d5ca1e2531e3a91694bf /README.md
downloadaur-497df0d2aea89556d578d00780c829e9a1823d9d.tar.gz
Initial commit.
Diffstat (limited to 'README.md')
-rw-r--r--README.md27
1 files changed, 27 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 000000000000..1abc4e0ea1c8
--- /dev/null
+++ b/README.md
@@ -0,0 +1,27 @@
+# php-wddx-aur
+An [AUR] package build for PHP's [wddx] extension.
+
+## Building
+You can of course build this package using [makepkg], but the recommended way
+of building this package is using [Docker]. This can be done like so:
+
+```bash
+docker build --tag php-wddx-aur .
+docker run --rm --volume "$(pwd):/package" php-wddx-aur
+```
+
+Alternatively, using [Fig]:
+
+```bash
+fig run build
+```
+
+This will start create a docker image tagged as php-wddx-aur and build the
+package inside the container. As a result you should get the built package in
+your current directory.
+
+[AUR]: https://aur.archlinux.org/
+[wddx]: http://php.net/wddx
+[makepkg]: https://wiki.archlinux.org/index.php/Makepkg
+[Docker]: https://www.docker.com/
+[Fig]: http://www.fig.sh/