mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
21 lines
671 B
Bash
21 lines
671 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
# Contributor: Stefano Esposito <ragnarok@email.it>
|
|
|
|
pkgname=emacs-python-mode
|
|
pkgver=5.1.0
|
|
pkgrel=1
|
|
pkgdesc="Python mode for Emacs"
|
|
url="https://launchpad.net/python-mode"
|
|
license=("GPL")
|
|
arch=('i686' 'x86_64')
|
|
depends=('emacs')
|
|
makedepends=('bash')
|
|
install=emacs-python-mode.install
|
|
source=("http://launchpad.net/python-mode/trunk/$pkgver/+download/python-mode.el")
|
|
md5sums=('04b83ee2e30f925fd51b90ab5cb3c058')
|
|
|
|
build() {
|
|
install -d $startdir/pkg/usr/share/emacs/site-lisp
|
|
install -m644 $startdir/src/python-mode.el -t $startdir/pkg/usr/share/emacs/site-lisp
|
|
}
|