summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorgi Kirilov2023-06-20 17:54:16 +0300
committerGeorgi Kirilov2023-06-20 17:54:16 +0300
commit2b4c4a18a558c352ad05afa9a0d6951c930334a9 (patch)
treea2c9095c5a6387e184c23a8318363bd222bf89d8
parentbab3cfa60fa7411e3942239692bcb8859ea178ae (diff)
downloadaur-2b4c4a18a558c352ad05afa9a0d6951c930334a9.tar.gz
fix building behind a HTTP proxy
which only accepts HTTPS requests (reported by gneg)
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD3
2 files changed, 3 insertions, 2 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 03b240a39dfd..048d90529fb5 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = textadept
pkgdesc = Fast, minimalist, and remarkably extensible cross-platform text editor
pkgver = 11.4
- pkgrel = 4
+ pkgrel = 5
url = https://github.com/orbitalquark/textadept
arch = i686
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index aff006859fe7..d006b3e265fc 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,7 +4,7 @@
pkgname=('textadept' 'textadept-gtk3' 'textadept-curses')
pkgver=11.4
-pkgrel=4
+pkgrel=5
pkgdesc="Fast, minimalist, and remarkably extensible cross-platform text editor"
arch=('i686' 'x86_64' 'aarch64')
url="https://github.com/orbitalquark/textadept"
@@ -24,6 +24,7 @@ prepare() {
sed -i '1008s/volatile//;1099s/volatile//;' scintilla/gtk/ScintillaGTKAccessible.cxx
## makes compile flags work again
sed -i \
+ -e 's/http:/https:/g' \
-e 's/CFLAGS :=/CFLAGS +=/g' \
-e 's/CXXFLAGS :=/CXXFLAGS +=/g' \
-e 's/LDFLAGS :=/LDFLAGS +=/g' \