@zangoku
1 Take the patch text and save it into a file "obs_libdatachannel_fix.patch" and place it in the same directory as the PKGBUILD.
2 Add the patch filename to the "source" array in the PKGBUILD:
source=("$pkgname::git+https://github.com/obsproject/obs-studio.git#branch=master"
"git+https://github.com/Mixer/ftl-sdk.git"
"git+https://github.com/obsproject/obs-browser.git"
"git+https://github.com/obsproject/obs-websocket.git"
"obs_libdatachannel_fix.patch"
)
3 Add the md5sum of the patch to the "md5sums" array in the PKGBUILD (use the output of md5sum obs_libdatachannel_fix.patch
:
md5sums=("SKIP" "SKIP" "SKIP" "SKIP" "024f5214faf840efa736bbd42386b540")
4 Add the patch command in "prepare" function to apply the patch in the PKGBUILD:
prepare() {
cd $pkgname
gitconf="protocol.file.allow=always"
git config submodule.plugins/obs-outputs/ftl-sdk.url $srcdir/ftl-sdk
git config submodule.plugins/obs-browser.url $srcdir/obs-browser
git config submodule.plugins/obs-websocket.url $srcdir/obs-websocket
git -c $gitconf submodule update
patch -p1 < "$srcdir/obs_libdatachannel_fix.patch"
}
5 Build the package. It should apply the patch during the prepare step as specified.
EDIT: Oh they updated. Well I'm leaving this comment anyway for those who want to have an example of patching the source.
Pinned Comments
thotypous commented on 2021-02-05 14:12 (UTC)
If you don't want to build this package yourself, hourly builds are available at https://aur.chaotic.cx
benklett commented on 2016-02-06 23:11 (UTC) (edited on 2016-08-10 14:01 (UTC) by benklett)