1
0

Add readme

This commit is contained in:
MK13
2021-01-04 23:01:09 +01:00
parent 327a07ead3
commit ca938c3df5

11
README.md Normal file
View File

@@ -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`