mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
23 lines
686 B
Bash
23 lines
686 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
||
|
|
||
|
pkgname=cedet
|
||
|
pkgver=1.0pre6
|
||
|
pkgrel=1
|
||
|
pkgdesc="tools written with the end goal of creating an advanced development environment in Emacs."
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://cedet.sourceforge.net/"
|
||
|
license=('GPL')
|
||
|
depends=(emacs)
|
||
|
install=cedet.install
|
||
|
source=(http://downloads.sourceforge.net/cedet/$pkgname-$pkgver.tar.gz)
|
||
|
md5sums=('775c74493b146bd64352969c1590f96b')
|
||
|
|
||
|
build() {
|
||
|
cd $startdir/src/$pkgname-$pkgver
|
||
|
make || return 1
|
||
|
|
||
|
mkdir -p $startdir/pkg/usr/share/emacs/site-lisp/cedet
|
||
|
cp -R $startdir/src/$pkgname-$pkgver/* $startdir/pkg/usr/share/emacs/site-lisp/cedet
|
||
|
}
|