desktop/emacs-nox/PKGBUILD

37 lines
996 B
Bash
Raw Normal View History

pkgname=emacs-nox
2018-05-30 05:59:37 +08:00
pkgver=26.1
pkgrel=2
pkgdesc='The Emacs Editor, without X11 support'
arch=('x86_64')
2018-05-30 05:59:37 +08:00
url="https://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)
2018-05-30 05:59:37 +08:00
md5sums=('649ec46965a8b842bdb2cbf7764c2a9a')
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}
2018-05-30 05:59:37 +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 {} \;
#remove .desktop file and icons
2014-12-16 23:50:11 +08:00
rm -rf $pkgdir/usr/share/{applications,icons}
2013-03-29 20:16:12 +08:00
}