gtk/emacs/PKGBUILD

40 lines
1.3 KiB
Bash
Raw Normal View History

2013-05-04 22:46:07 +08:00
pkgname=emacs
2015-04-22 19:45:50 +08:00
pkgver=24.5
pkgrel=1
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')
2013-08-14 06:12:40 +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
source=(ftp://ftp.gnu.org/gnu/emacs/$pkgname-$pkgver.tar.xz{,.sig})
2015-04-22 19:45:50 +08:00
md5sums=('50560ee00bac9bb9cf0e822764cd0832'
2014-11-10 07:38:25 +08:00
'SKIP')
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
}