diff options
Diffstat (limited to 'community/emacs-nox/PKGBUILD')
-rw-r--r-- | community/emacs-nox/PKGBUILD | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/community/emacs-nox/PKGBUILD b/community/emacs-nox/PKGBUILD index dc61fe518..75cb2ecb3 100644 --- a/community/emacs-nox/PKGBUILD +++ b/community/emacs-nox/PKGBUILD @@ -1,22 +1,21 @@ -# $Id: PKGBUILD 76185 2012-09-12 20:05:28Z jlichtblau $ +# $Id: PKGBUILD 88621 2013-04-20 17:17:19Z jlichtblau $ # Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> # Contributor: Chris Brannon <cmbrannon@cox.net> pkgname=emacs-nox -pkgver=24.2 +pkgver=24.3 pkgrel=1 -pkgdesc="The Emacs Editor, without X11 support" +pkgdesc="The extensible, customizable, self-documenting real-time display editor, without X11 support" arch=('i686' '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') +conflicts=('emacs') changelog=$pkgname.changelog install=$pkgname.install source=(ftp://ftp.gnu.org/gnu/emacs/emacs-${pkgver}.tar.gz) -sha256sums=('6d9892dff6e1761d4a5eba20712beba4f37d77a196f8021081a2e69fcb5bd357') +sha256sums=('0098ca3204813d69cd8412045ba33e8701fa2062f4bff56bedafc064979eef41') build() { cd ${srcdir}/emacs-$pkgver @@ -33,9 +32,8 @@ package() { # remove conflict with ctags package 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 - find ${pkgdir}/usr/share/emacs/$pkgver -type d -exec chmod 755 {} \; + # remove conflict with texinfo + rm "$pkgdir"/usr/share/info/info.info.gz # fix user/root permissions on usr/share files find ${pkgdir}/usr/share/emacs/$pkgver -exec chown root.root {} \; # remove .desktop file and icons |