summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 05f48abcae724456bb34a3f2390c6e24711d70e5 (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
# Maintainer: Mark Carter <alt.mcarter@gmail.com>
pkgname=neoleo
pkgver=6.0.0
pkgrel=2
pkgdesc="Lightweight curses spreadsheet based on GNU oleo"
arch=('i686' 'x86_64')
url="https://github.com/blippy/neoleo"
license=('GPL')
depends=('ncurses')
source=(https://github.com/blippy/neoleo/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz)
md5sums=('c7602089853a4b38f90e7fe5874c9b2f')


build() {
	cd "$pkgname-$pkgver"
	./configure LDFLAGS="-ltinfo" --prefix=/usr 	
	make
}


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