summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 80f485035b908316d89268a170fe79ea71eefb9a (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
27
28
29
30
31
32
33
# Maintainer: TuxnVape Elrondo46 <elrond94athotmail.com>
# CoMaintainer: Frederic Bezies < fredbezies at gmail dot com>

pkgname=ne-git
pkgver=3.3.1.r6.g05cb3f6
pkgrel=1
pkgdesc="A nice developer editor, highly recommended by Epitech 
(aka Episteak) French 
School - git version"
arch=('i686' 'x86_64')
url="http://ne.di.unimi.it/"
license=('GPL3')
makedepends=('git')
depends=('ncurses')
provides=('ne')
conflicts=('ne')
source=('git+https://github.com/vigna/ne.git')
sha256sums=('SKIP')

pkgver() {
  cd "$srcdir/ne"
  git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}

build() {
  cd "$srcdir/ne"
make 
}

package() {
  cd "$srcdir/ne"
  make install PREFIX=$pkgdir/usr
}