mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
26 lines
814 B
Bash
26 lines
814 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
# Maintainer: Martin Lefebvre <dadexter@gmail.com>
|
|
|
|
pkgname=motor
|
|
pkgver=3.4.0
|
|
pkgrel=2
|
|
pkgdesc="Motor is a text mode based programming environment for Linux."
|
|
arch=('i686' 'x86_64')
|
|
url="http://thekonst.net/motor/"
|
|
license=('GPL')
|
|
depends=('ncurses' 'cvs' 'automake' 'autoconf' 'gdb' 'make')
|
|
source=(http://thekonst.net/download/$pkgname-$pkgver.tar.bz2 \
|
|
void-compile.patch)
|
|
md5sums=('0fcf7ce0386b269e8bdbb7a86e9bee19'
|
|
'b3712050f95092caaa2ec3c826f407e1')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
patch -Np1 -i ../void-compile.patch || return 1
|
|
./configure --prefix=/usr \
|
|
# --enable-locales-fix
|
|
--disable-nls
|
|
make || return 1
|
|
make prefix=$startdir/pkg/usr install || return 1
|
|
}
|