gtk/emacs/PKGBUILD

40 lines
1.3 KiB
Bash
Raw Normal View History

2013-05-04 22:46:07 +08:00
pkgname=emacs
2017-09-12 08:09:01 +08:00
pkgver=25.3
2018-01-29 02:56:29 +08:00
pkgrel=2
2013-05-04 22:46:07 +08:00
pkgdesc="The extensible, customizable, self-documenting real-time display editor"
arch=('x86_64')
url="http://www.gnu.org/software/emacs/emacs.html"
license=('GPL3')
2016-09-18 10:57:56 +08:00
depends=('librsvg' 'gpm' 'giflib' 'libxpm' 'libotf' 'm17n-lib' 'gtk3' 'hicolor-icon-theme' 'desktop-file-utils'
'alsa-lib' 'imagemagick' 'gnutls')
2015-04-22 19:45:50 +08:00
conflicts=('emacs-nox')
2013-05-04 22:46:07 +08:00
install=emacs.install
2015-11-30 00:45:16 +08:00
source=(ftp://ftp.gnu.org/gnu/emacs/$pkgname-$pkgver.tar.xz)
2017-09-12 08:09:01 +08:00
md5sums=('05da38e18da75c98d48ad69b5ab74e71')
2013-05-04 22:46:07 +08:00
build() {
cd "$srcdir"/$pkgname-$pkgver
./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib \
2013-05-04 22:46:07 +08:00
--localstatedir=/var --with-x-toolkit=gtk3 --with-xft
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}
2013-05-04 22:46:07 +08:00
# remove conflict with texinfo
rm "$pkgdir"/usr/share/info/info.info.gz
2013-05-04 22:46:07 +08:00
# fix user/root permissions on usr/share files
find "$pkgdir"/usr/share/emacs/$pkgver -exec chown root:root {} \;
2013-05-04 22:46:07 +08:00
# fix perms on /var/games
chmod 775 "$pkgdir"/var/games
chmod 775 "$pkgdir"/var/games/emacs
chmod 664 "$pkgdir"/var/games/emacs/*
chown -R root:games "$pkgdir"/var/games
}