summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorTiago de Paula2024-04-21 15:55:19 -0300
committerTiago de Paula2024-04-21 18:54:51 -0300
commit84b88930cdc60586184fc663e13904c9144b7525 (patch)
tree94f80f3953debd617414e6cb11e0c19f4d91a09a
parenta193bc716c1e81f62da958f6ad6f8042117fb191 (diff)
downloadaur-84b88930cdc60586184fc663e13904c9144b7525.tar.gz
feat: disable debug symbols generation
The 'debug' option was enabled by default last year on makepkg.conf, and it makes build 5 times slower (on my machine), without any advantage for assets packages like this.
-rw-r--r--.SRCINFO1
-rw-r--r--PKGBUILD2
2 files changed, 2 insertions, 1 deletions
diff --git a/.SRCINFO b/.SRCINFO
index d7058fc37cf5..3c18f5d4973e 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -12,6 +12,7 @@ pkgbase = tela-circle-icon-theme-spl-git
provides = tela-circle-icon-theme
provides = tela-circle-icon-theme-git
options = !strip
+ options = !debug
source = tela-circle-icon-theme::git+https://github.com/vinceliuice/Tela-circle-icon-theme.git
b2sums = SKIP
diff --git a/PKGBUILD b/PKGBUILD
index 6b32bc2ea5b1..0633af807ef1 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -14,7 +14,7 @@ license=('GPL3')
makedepends=('bash' 'git')
depends=('gtk-update-icon-cache' 'hicolor-icon-theme')
provides=("${_pkgbase}" "${_pkgbase}-git")
-options=(!strip)
+options=(!strip !debug)
source=("${_pkgbase}::git+${url}.git")
b2sums=('SKIP')