desktop/emacs-nox/PKGBUILD

48 lines
1.3 KiB
Bash
Raw Normal View History

pkgname=emacs-nox
2015-04-22 19:32:35 +08:00
pkgver=24.5
2014-12-16 23:50:11 +08:00
pkgrel=1
pkgdesc='The Emacs Editor, without X11 support'
arch=('x86_64')
url="http://www.gnu.org/software/emacs/emacs.html"
license=('GPL3')
depends=('dbus-core' 'ncurses' 'perl')
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)
md5sums=('50560ee00bac9bb9cf0e822764cd0832')
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
}