opt/sc/Pkgfile

31 lines
806 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: Curses based spreadsheet with vi key-bindings
2022-02-07 14:52:08 +01:00
# URL: http://www.ibiblio.org/pub/Linux/apps/financial/spreadsheet/
# Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: ncurses
2006-02-23 16:26:10 +01:00
name=sc
version=7.16
2022-02-07 14:52:08 +01:00
release=7
2015-04-24 10:34:47 +02:00
source=(http://ftp.de.debian.org/debian/pool/main/s/sc/sc_7.16.orig.tar.gz \
2022-02-07 14:52:08 +01:00
http://ftp.de.debian.org/debian/pool/main/s/sc/sc_7.16-4.1.debian.tar.xz)
2006-02-23 16:26:10 +01:00
2022-02-07 14:52:08 +01:00
build() {
cd $name-$version
2015-04-24 10:34:47 +02:00
2022-02-07 14:52:08 +01:00
local p
for p in $(< $SRC/debian/patches/series); do
patch -p1 -i $SRC/debian/patches/$p
done
2015-04-24 10:34:47 +02:00
2022-02-07 14:52:08 +01:00
sed -e "/^CFLAGS=/s/-O2 -pipe/$CFLAGS/" \
-e "/^LIBDIR=/s|doc/||" \
-e "/^LIB=/s/ncurses/ncursesw/" -i Makefile
2015-04-24 10:34:47 +02:00
2022-02-07 14:52:08 +01:00
install -d $PKG/usr/{bin,share/man/man1,share/sc}
2015-04-24 10:34:47 +02:00
2022-02-07 14:52:08 +01:00
make
make prefix=$PKG/usr MANDIR=$PKG/usr/share/man/man1 install
sed -i "s|$PKG||g" $PKG/usr/share/man/man1/sc.1
2006-02-23 16:26:10 +01:00
}