From ca938c3df5d0c768bb4848bd0a8b6cd95ca5b04d Mon Sep 17 00:00:00 2001 From: MK13 Date: Mon, 4 Jan 2021 23:01:09 +0100 Subject: [PATCH] Add readme --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..4d65c15 --- /dev/null +++ b/README.md @@ -0,0 +1,11 @@ +# Create patch +* `diff -ruN path/to/original.file patch/to/changed.file` > patch.patch +* Open resulting patch and change header +** `--- a/path/file.extension` +** `+++ b/path/file.extension` + +# PKGBUILD changes +* Add to `source` array +* Add to checksum array (`'SKIP'`) +* Add applying of patch to `build()`/`prepare()` +** `patch -p1 -i ../patch.patch` \ No newline at end of file