# Description: Curses based spreadsheet with vi key-bindings 
# URL: https://github.com/n-t-roff/sc
# Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: ncurses

name=sc
version=7.16-1.1.2
release=1
source=(http://ftp.de.debian.org/debian/pool/main/s/sc/sc_$version.orig.tar.gz \
	http://ftp.de.debian.org/debian/pool/main/s/sc/sc_$version-1.debian.tar.xz)

build() {
	cd $name-${version/-/_}

	local p
	sed '/^#/d' -i $SRC/debian/patches/series
	for p in $(< $SRC/debian/patches/series); do
		patch -p1 -i $SRC/debian/patches/$p
	done
 
	sed '/^prefix/s|/local||' -i Makefile.in

	./configure
	make
	make prefix=$PKG/usr install
}
