diff options
author | Freemor <freemor@freemor.ca> | 2018-08-03 14:14:28 -0300 |
---|---|---|
committer | Freemor <freemor@freemor.ca> | 2018-08-03 14:14:28 -0300 |
commit | 995170e8cfb231bbb2f8e9a41a3e12d83d687945 (patch) | |
tree | bf440b2dcc93ad4b21232aefce7e1198b898362f /libre/hexchat | |
parent | 474fe6779f955c993592b20fb62b6e3945463eda (diff) | |
download | abslibre-995170e8cfb231bbb2f8e9a41a3e12d83d687945.tar.gz abslibre-995170e8cfb231bbb2f8e9a41a3e12d83d687945.tar.bz2 abslibre-995170e8cfb231bbb2f8e9a41a3e12d83d687945.zip |
[hexchat] Restore ctrl-w
Diffstat (limited to 'libre/hexchat')
-rw-r--r-- | libre/hexchat/PKGBUILD | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/libre/hexchat/PKGBUILD b/libre/hexchat/PKGBUILD index 2cef7b11e..9c969a0a9 100644 --- a/libre/hexchat/PKGBUILD +++ b/libre/hexchat/PKGBUILD @@ -6,7 +6,7 @@ pkgname=hexchat pkgver=2.14.1 -pkgrel=4.parabola1 +pkgrel=5.parabola1 pkgdesc='A popular and easy to use graphical IRC (chat) client, without nonfree browser reference' arch=('i686' 'x86_64' 'armv7h') url='https://hexchat.github.io/' @@ -21,16 +21,19 @@ optdepends=('enchant: Spell check' 'python: Python plugin') replaces=(${pkgname}-libre) conflicts=(${pkgname}-libre) -source=("git+https://github.com/hexchat/hexchat.git#tag=v${pkgver}") -sha256sums=('SKIP') +source=("git+https://github.com/hexchat/hexchat.git#tag=v${pkgver}" 'restore_ctrl-w.patch') +sha256sums=('SKIP' + 'f78f986a064e6c5a8713a219fa042c94bb2b0236869d33b48801faedc9cef63e') prepare() { cd hexchat - git cherry-pick -n 5cd70622aaabc0419cc0b547808f09221530f0fc #FS59332 + git cherry-pick -n 5cd70622aaabc0419cc0b547808f09221530f0fc #FS59332 # Remove nonfree browser references sed -i '\|NAME Open Link| s|Firefox|Iceweasel|' src/common/hexchat.c sed -i '\|NAME Open Link| s|firefox -new-window %s\\n\\n";|iceweasel -new-window %s\\n\\n"\\\n "NAME Open Link in a new Icecat Window\\n" "CMD !icecat -new-window %s\\n\\n";|' src/common/hexchat.c +#Restore CTRL-W + patch -p1 src/fe-gtk/menu.c ../restore_ctrl-w.patch } build() { |