blob: 9a087bbf8f7ace1bb01f8af8223ba4ee732c30d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
# Maintainer: Luke Shumaker <lukeshu@parabola.nu>
# Maintainer (Arch:emacs): Juergen Hoetzel <juergen@archlinux.org>
# Contributor (Arch:emacs): Renchi Raju <renchi@green.tam.uiuc.edu>
_pkgname=emacs
pkgname=emacs-lucid
pkgver=26.1
pkgrel=2
pkgrel+=.lucid1
pkgdesc="The extensible, customizable, self-documenting real-time display editor"
pkgdesc+=", with the Lucid X11 toolkit"
arch=('x86_64')
arch+=('i686' 'armv7h')
url="http://www.gnu.org/software/emacs/emacs.html"
license=('GPL3')
depends=('librsvg' 'gpm' 'giflib' 'libxpm' 'libotf' 'm17n-lib' 'hicolor-icon-theme' 'gconf' 'desktop-file-utils' 'alsa-lib' 'libmagick6' 'gnutls')
validpgpkeys=('B29426DEFB07724C3C35E5D36592E9A3A0B0F199' '28D3BED851FDF3AB57FEF93C233587A47C207910')
source=(ftp://ftp.gnu.org/gnu/emacs/$_pkgname-$pkgver.tar.xz{,.sig}
0001-Ignore-color-fonts-when-using-Xft.patch
0001-Port-FC_COLOR-change-to-older-fontconfig.patch
0001-src-ftfont.c-ftfont_spec_pattern-Fix-whitespace.patch)
sha1sums=('53c01d987b2613701f42d9f941c2d5225a5874c4'
'SKIP'
'e6b77aadf6c60dfdc1ec6b61d5968e64d959257d'
'6b40ad3d8936bfd068398c8d46cb8e0b9501fe64'
'51b3e6a2c32be315c9a15c55ca2e97e84d204f32')
provides=("$_pkgname=$pkgver")
conflicts=("$_pkgname")
prepare() {
cd $_pkgname-$pkgver
patch -Np1 -i "${srcdir}/0001-Ignore-color-fonts-when-using-Xft.patch"
patch -Np1 -i "${srcdir}/0001-Port-FC_COLOR-change-to-older-fontconfig.patch"
patch -Np1 -i "${srcdir}/0001-src-ftfont.c-ftfont_spec_pattern-Fix-whitespace.patch"
}
build() {
cd "$srcdir"/$_pkgname-$pkgver
PKG_CONFIG_PATH="/usr/lib/imagemagick6/pkgconfig" \
ac_cv_lib_gif_EGifPutExtensionLast=yes ./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib \
--localstatedir=/var --with-x-toolkit=lucid --with-xft \
--with-modules
make
}
package() {
cd "$srcdir"/$_pkgname-$pkgver
make DESTDIR="$pkgdir" install
# remove conflict with ctags package
mv "$pkgdir"/usr/bin/{ctags,ctags.emacs}
mv "$pkgdir"/usr/share/man/man1/{ctags.1.gz,ctags.emacs.1}
# fix user/root permissions on usr/share files
find "$pkgdir"/usr/share/emacs/$pkgver -exec chown root:root {} \;
}
|