mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
23 lines
620 B
Bash
23 lines
620 B
Bash
# $Id: PKGBUILD 43198 2009-06-20 19:54:34Z eric $
|
|
# Maintainer: damir <damir@archlinux.org>
|
|
# Contributor: Ben <ben@benmazer.net>
|
|
|
|
pkgname=ne
|
|
pkgver=2.0.3
|
|
pkgrel=1
|
|
pkgdesc="the nice editor"
|
|
arch=('i686' 'x86_64')
|
|
url="http://ne.dsi.unimi.it"
|
|
license=('GPL')
|
|
depends=('glibc' 'ncurses' 'texinfo')
|
|
makedepends=('texlive-bin' 'texlive-core' 'ghostscript')
|
|
options=('!makeflags')
|
|
install=ne.install
|
|
source=(http://ne.dsi.unimi.it/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('16ed5c974adb8255a693f8a3b6e91071')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make || return 1
|
|
make PREFIX="${pkgdir}/usr" install || return 1
|
|
}
|