diff --git a/Documents/code/AUR/emacs/PKGBUILD b/Documents/code/AUR/emacs/PKGBUILD index 2d3ca19..310991e 100644 --- a/Documents/code/AUR/emacs/PKGBUILD +++ b/Documents/code/AUR/emacs/PKGBUILD @@ -60,7 +60,7 @@ if [[ $CLI == "YES" ]] ; then else pkgname="emacs-phundrak-git" fi -pkgver=28.0.60.150902 +pkgver=28.0.60.150911 pkgrel=1 pkgdesc="GNU Emacs. Development master branch with Phundrak’s tweaks." arch=('x86_64') @@ -74,9 +74,11 @@ conflicts=('emacs' 'emacs26-git' 'emacs27-git' 'emacs28-git' 'emacs-seq' 'emacs- replaces=('emacs' 'emacs26-git' 'emacs27-git' 'emacs28-git' 'emacs-seq' 'emacs-nox' 'emacs-git') #source=("emacs-git::git://git.savannah.gnu.org/emacs.git") # If Savannah fails for reasons, use Github's mirror -source=("emacs-git::git://github.com/emacs-mirror/emacs.git#branch=emacs-28") +source=("emacs-git::git://github.com/emacs-mirror/emacs.git#branch=emacs-28" + "https://raw.githubusercontent.com/TheVaffel/emacs/master/emacs_background_transparency.patch") OPTIONS=(strip docs !libtool !staticlibs emptydirs zipman purge !debug) -md5sums=('SKIP') +md5sums=('SKIP' + 'SKIP') ################################################################################ ################################################################################ @@ -185,6 +187,8 @@ pkgver() { # Doing so, breaks incremental compilation. prepare() { cd "$srcdir/emacs-git" + git apply --check "../../emacs_background_transparency.patch" + git apply "../../emacs_background_transparency.patch" [[ -x configure ]] || ( ./autogen.sh git && ./autogen.sh autoconf ) }