[PKGBUILD] Apply TheVaffel’s patch for Emacs transparent background
This commit adds a patch applied to Emacs’ source code so Emacs can get a transparent background and not make the whole frame transparent. This means images and text are no longer transparent, only the background!
This commit is contained in:
parent
835954f30d
commit
6e8ec734c4
@ -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 )
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user