summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 0e5ca5c4fe61f55fee43227d637a10b3ae189729 (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
# Maintainer: Mark Carter <alt.mcarter@gmail.com>
pkgname=neoleo
pkgver=9.0
pkgrel=2
pkgdesc="Lightweight curses spreadsheet based on GNU oleo"
arch=('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=('fd868889016741f267c3e30a61ae5d61')


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


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