summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md6
-rw-r--r--changelog.md4
-rw-r--r--include/u8c/ver.h2
3 files changed, 11 insertions, 1 deletions
diff --git a/README.md b/README.md
index 330f06d..4d21fb6 100644
--- a/README.md
+++ b/README.md
@@ -2,6 +2,12 @@
[*u8c*](https://mandelbrot.dk/delta/u8c) is a free and open-source C-based library for transforming Unicode codepoints, as well as encoding them into UTF-8, even on implementations that use a different 32 bit encoding.
+## Installing
+
+*u8c* can be installed either via the `install` target in the provided Makefile, or using the PKGBUILD found [here](https://mandelbrot.dk/pkgbuild/delta/u8c).
+
+Using the PKGBUILD is as simple as `git clone https://mandelbrot.dk/pkgbuild/delta/u8c.git && cd u8c && makepkg --clean --install --syncdeps`.
+
## Copyright & License
Copyright 2021 Gabriel Jensen.
diff --git a/changelog.md b/changelog.md
index afb4049..f31e1d6 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,3 +1,7 @@
+# 4
+
+* Add link to PKGBUILD in README.
+
# 3
* Remove `include/u8c.h`.
diff --git a/include/u8c/ver.h b/include/u8c/ver.h
index 31835f8..d8e6062 100644
--- a/include/u8c/ver.h
+++ b/include/u8c/ver.h
@@ -16,5 +16,5 @@
/* Version */
# if !defined(u8c_ver)
# include <stdint.h>
-# define u8c_ver (UINT64_C(0x3))
+# define u8c_ver (UINT64_C(0x4))
# endif