mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
17 lines
497 B
Bash
17 lines
497 B
Bash
# Contributor: Ismael Barros (RazZziel) <razielmine@gmail.com>
|
|
pkgname=emacs-apel
|
|
pkgver=10.7
|
|
pkgrel=2
|
|
pkgdesc="A library for making portable Emacs Lisp programs."
|
|
arch=(i686 x86_64)
|
|
url="http://cvs.m17n.org/elisp/APEL/"
|
|
license=('GPL')
|
|
depends=('emacs')
|
|
source=(http://kanji.zinbun.kyoto-u.ac.jp/~tomo/lemi/dist/apel/apel-10.7.tar.gz)
|
|
md5sums=('fadc7823f2bc22c7b25cb5185232820d')
|
|
|
|
build() {
|
|
cd $startdir/src/apel-$pkgver
|
|
make || return 1
|
|
make install PREFIX=$startdir/pkg/usr || return 1
|
|
}
|