2011-06-08 20:44:52 +08:00
|
|
|
pkgname=emacs-nox
|
2016-09-18 10:38:39 +08:00
|
|
|
pkgver=25.1
|
2017-01-05 08:17:03 +08:00
|
|
|
pkgrel=2
|
2013-02-19 05:49:58 +08:00
|
|
|
pkgdesc='The Emacs Editor, without X11 support'
|
|
|
|
arch=('x86_64')
|
2011-06-08 20:44:52 +08:00
|
|
|
url="http://www.gnu.org/software/emacs/emacs.html"
|
2013-02-19 05:49:58 +08:00
|
|
|
license=('GPL3')
|
2016-09-18 10:38:39 +08:00
|
|
|
depends=('dbus' 'ncurses' 'perl' 'gnutls')
|
2011-06-08 20:44:52 +08:00
|
|
|
provides=('emacs')
|
|
|
|
conflicts=('emacs' 'emacs-cvs')
|
|
|
|
options=('docs')
|
|
|
|
install=$pkgname.install
|
2015-04-22 19:32:35 +08:00
|
|
|
source=(ftp://ftp.gnu.org/gnu/emacs/emacs-${pkgver}.tar.xz)
|
2016-09-18 10:38:39 +08:00
|
|
|
md5sums=('4f3d42fb22823a659e16bfa89078a74c')
|
2011-06-08 20:44:52 +08:00
|
|
|
|
|
|
|
build() {
|
2014-12-16 23:50:11 +08:00
|
|
|
cd $srcdir/emacs-$pkgver
|
2011-06-08 20:44:52 +08:00
|
|
|
|
2013-02-19 05:49:58 +08:00
|
|
|
./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib \
|
|
|
|
--localstatedir=/var --without-x --without-sound
|
|
|
|
make
|
|
|
|
}
|
2011-06-08 20:44:52 +08:00
|
|
|
|
2013-02-19 05:49:58 +08:00
|
|
|
package() {
|
2014-12-16 23:50:11 +08:00
|
|
|
cd $srcdir/emacs-$pkgver
|
2013-02-19 05:49:58 +08:00
|
|
|
make DESTDIR=${pkgdir} install
|
2011-06-08 20:44:52 +08:00
|
|
|
|
2013-02-19 05:49:58 +08:00
|
|
|
#remove conflict with ctags package
|
2014-12-16 23:50:11 +08:00
|
|
|
mv $pkgdir/usr/bin/{ctags,ctags.emacs}
|
|
|
|
mv $pkgdir/usr/share/man/man1/{ctags.1.gz,ctags.emacs.1}
|
2013-02-19 05:49:58 +08:00
|
|
|
|
|
|
|
#fix all the 777 perms on directories
|
2014-12-16 23:50:11 +08:00
|
|
|
find $pkgdir/usr/share/emacs/$pkgver -type d -exec chmod 755 {} \;
|
2013-02-19 05:49:58 +08:00
|
|
|
#fix user/root permissions on usr/share files
|
2014-12-16 23:50:11 +08:00
|
|
|
find $pkgdir/usr/share/emacs/$pkgver -exec chown root.root {} \;
|
2013-02-19 05:49:58 +08:00
|
|
|
#remove .desktop file and icons
|
2014-12-16 23:50:11 +08:00
|
|
|
rm -rf $pkgdir/usr/share/{applications,icons}
|
2011-06-08 20:44:52 +08:00
|
|
|
|
2013-02-19 05:49:58 +08:00
|
|
|
# fix perms on /var/games
|
2014-12-16 23:50:11 +08:00
|
|
|
chmod 775 $pkgdir/var/games
|
|
|
|
chmod 775 $pkgdir/var/games/emacs
|
|
|
|
chmod 664 $pkgdir/var/games/emacs/*
|
|
|
|
chown -R root:games $pkgdir/var/games
|
2013-03-29 20:29:42 +08:00
|
|
|
|
|
|
|
# fix conflict with texinfo
|
2014-12-16 23:50:11 +08:00
|
|
|
rm $pkgdir/usr/share/info/info.info.gz
|
2013-03-29 20:16:12 +08:00
|
|
|
}
|