summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 51e4d22306d941a1ca3ac5bd7d8361670399a8f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>
pkgname=emacs-escreen  
pkgver=1.20
pkgrel=1
_emacs=emacs
pkgdesc="Window configuration management for emacs"
url="http://www.splode.com/~friedman/software/emacs-lisp/#ui"
arch=('i686' 'x86_64')
license=('GPL')
depends=('emacs')
install=escreen.install
source=(http://www.splode.com/~friedman/software/emacs-lisp/src/escreen.el dotemacs)
md5sums=('43182159eeb5eb141fe3254eaf9fef22'
         '41c28902d9d9ff178e0048418af2b972')
build() {
  cd $srcdir
  $_emacs -batch -q -f batch-byte-compile escreen.el 
}
package() {
  install -Dm644 $srcdir/escreen.el \
    $pkgdir/usr/share/${_emacs}/site-lisp/escreen.el
  install -Dm644 $srcdir/escreen.elc \
    $pkgdir/usr/share/${_emacs}/site-lisp/escreen.elc 
  install -Dm644 dotemacs $pkgdir/usr/share/doc/emacs-escreen/dotemacs
}