summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorKlaus Alexander Seistrup2024-01-14 09:38:42 +0100
committerKlaus Alexander Seistrup2024-01-14 09:38:42 +0100
commit648312a5c1486646850ea79c138488ccff6dbd45 (patch)
tree1d00866ab08a61b4f4812b8054a1c11f7666d6f9
parent915243f97f7b8a7e8f691ec0cf9a07ae5aa35a07 (diff)
downloadaur-648312a5c1486646850ea79c138488ccff6dbd45.tar.gz
Move RFC-23 assignments to the build() function
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD10
2 files changed, 6 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 6dca1ef24c58..0bde030009c5 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = jed-git
pkgdesc = Powerful scriptable editor designed for use by programmers (built from latest git commit)
pkgver = 0.99.20.r180.g68f0c75
- pkgrel = 2
+ pkgrel = 3
url = https://www.jedsoft.org/jed/
install = jed-git.install
arch = aarch64
diff --git a/PKGBUILD b/PKGBUILD
index 012f89599aa5..777a61ff0e7f 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,7 +4,7 @@
pkgname=('jed-git')
_pkgname="${pkgname/-git/}"
pkgver='0.99.20.r180.g68f0c75'
-pkgrel='2'
+pkgrel='3'
pkgdesc='Powerful scriptable editor designed for use by programmers (built from latest git commit)'
arch=('aarch64' 'armv7h' 'i686' 'x86_64')
url='https://www.jedsoft.org/jed/'
@@ -34,10 +34,6 @@ prepare() {
-e "s|\(^all.*\)|\1 xjed rgrep getmail|" \
-e "s|..DEST.*doc|$pkgdir/usr/share/doc/$pkgname|g" \
-i src/Makefile.in
-
- # RFC-0023
- # 🔗 https://rfc.archlinux.page/0023-pack-relative-relocs/
- export LDFLAGS="$LDFLAGS -Wl,-z,pack-relative-relocs"
}
pkgver() {
@@ -57,6 +53,10 @@ pkgver() {
build() {
cd "$srcdir/$_pkgname"
+ # RFC-0023
+ # 🔗 https://rfc.archlinux.page/0023-pack-relative-relocs/
+ export LDFLAGS="$LDFLAGS -Wl,-z,pack-relative-relocs"
+
./configure --prefix=/usr JED_ROOT=/usr/share/jed
make clean