summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 379b8a68dcb04a7c2330e7c73cb836990bb7fab4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Maintainer: Valère Monseur <valere dot monseur at ymail dot com>
# Contributor: speps <speps at aur dot archlinux dot org>
# Contributor: damir <damir@archlinux.org>
# Contributor: Ben <ben@benmazer.net>

pkgname=ne
pkgver=3.0.1
pkgrel=1
pkgdesc="The nice editor, a fast small powerful and simple to use editor"
arch=('i686' 'x86_64')
url="http://ne.di.unimi.it"
license=('GPL3')
depends=('ncurses' 'texinfo')
install="ne.install"
source=("${url}/${pkgname}-${pkgver}.tar.gz")
md5sums=('48787d0aa55f89fadbd6f7d6cc6eb1de')

build() {
  cd "${pkgname}-${pkgver}"
  make PREFIX=/usr
}

package() {
  cd "${pkgname}-${pkgver}"
  make PREFIX=/usr DESTDIR="${pkgdir}/" install
}