desktop/emacs-nox/PKGBUILD

48 lines
1.3 KiB
Bash
Raw Normal View History

pkgname=emacs-nox
2016-09-18 10:38:39 +08:00
pkgver=25.1
2017-01-05 08:17:03 +08:00
pkgrel=2
pkgdesc='The Emacs Editor, without X11 support'
arch=('x86_64')
url="http://www.gnu.org/software/emacs/emacs.html"
license=('GPL3')
2016-09-18 10:38:39 +08:00
depends=('dbus' 'ncurses' 'perl' 'gnutls')
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')
build() {
2014-12-16 23:50:11 +08:00
cd $srcdir/emacs-$pkgver
./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib \
--localstatedir=/var --without-x --without-sound
make
}
package() {
2014-12-16 23:50:11 +08:00
cd $srcdir/emacs-$pkgver
make DESTDIR=${pkgdir} install
#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}
#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 {} \;
#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 {} \;
#remove .desktop file and icons
2014-12-16 23:50:11 +08:00
rm -rf $pkgdir/usr/share/{applications,icons}
# 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
}