2013-05-04 22:46:07 +08:00
|
|
|
pkgname=emacs
|
|
|
|
pkgver=24.3
|
2013-11-11 02:40:09 +08:00
|
|
|
pkgrel=4
|
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')
|
2013-05-04 22:46:07 +08:00
|
|
|
install=emacs.install
|
|
|
|
source=(ftp://ftp.gnu.org/gnu/emacs/$pkgname-$pkgver.tar.xz{,.sig})
|
|
|
|
md5sums=('ea9ed000ca165280265aabb55b9afbd7'
|
|
|
|
'3f6990fabfbe1d5f3cd58bace4eb20f1')
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "$srcdir"/$pkgname-$pkgver
|
2013-11-11 02:40:09 +08:00
|
|
|
./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
|
2013-11-11 02:40:09 +08:00
|
|
|
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
|
2013-11-11 02:40:09 +08:00
|
|
|
rm "$pkgdir"/usr/share/info/info.info.gz
|
2013-05-04 22:46:07 +08:00
|
|
|
# fix user/root permissions on usr/share files
|
2013-11-11 02:40:09 +08:00
|
|
|
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
|
|
|
|
}
|