summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Kamm2023-06-17 17:19:26 -0700
committerJack Kamm2023-06-17 17:19:26 -0700
commit4fc315bd9f4a62c7d1d82aa821663898b05e50a8 (patch)
treee1449c9e78a8f602ec390cc6e76f32b7290c115b
parentf564bb111afcedd5e26b7f561616e9abdd9fd9e1 (diff)
downloadaur-4fc315bd9f4a62c7d1d82aa821663898b05e50a8.tar.gz
Reorder configure flags, and remove couple of unneeded ones
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD16
2 files changed, 11 insertions, 7 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 9c4b8abf0fd3..ced58d3eb811 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = emacs-lucid
pkgdesc = The extensible, customizable, self-documenting real-time display editor (Lucid toolkit version)
pkgver = 28.2
- pkgrel = 5
+ pkgrel = 6
url = http://www.gnu.org/software/emacs/emacs.html
arch = x86_64
license = GPL3
diff --git a/PKGBUILD b/PKGBUILD
index 68ee21e34e2f..2246dc38e868 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -8,7 +8,7 @@
pkgname=emacs-lucid
pkgver=28.2
_pkgver_major=${pkgver/.*}
-pkgrel=5
+pkgrel=6
pkgdesc="The extensible, customizable, self-documenting real-time display editor (Lucid toolkit version)"
arch=('x86_64')
url="http://www.gnu.org/software/emacs/emacs.html"
@@ -65,11 +65,15 @@ build() {
cd "$srcdir"/emacs-$pkgver
./configure \
- --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib --localstatedir=/var \
- --with-x-toolkit=lucid --with-xft --with-xaw3d \
- --without-gconf --without-gsettings \
- --with-modules \
- --program-transform-name='s/^ctags$/ctags.emacs/'
+ --sysconfdir=/etc \
+ --prefix=/usr \
+ --libexecdir=/usr/lib \
+ --localstatedir=/var \
+ --with-modules \
+ --with-x-toolkit=lucid \
+ --without-gconf \
+ --without-gsettings \
+ --program-transform-name='s/^ctags$/ctags.emacs/'
make
}