wok view sc-im/receipt @ rev 19539

Up sc-im (0.4.0)
author Paul Issott <paul@slitaz.org>
date Sat Dec 03 21:08:29 2016 +0000 (2016-12-03)
parents 9107a81c9abd
children 1feee7ca564d
line source
1 # SliTaz package receipt.
3 PACKAGE="sc-im"
4 VERSION="0.4.0"
5 CATEGORY="office"
6 SHORT_DESC="Spreadsheet Calculator Improvised."
7 MAINTAINER="paul@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="https://github.com/andmarti1424/sc-im"
10 WGET_URL="git|git://github.com/andmarti1424/sc-im"
12 DEPENDS="ncurses libtinfo"
13 BUILD_DEPENDS="ncurses-dev git bzip2 bison flex"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src/src
19 sed -i 's|ncursesw/curses|curses|' *.c *.h
20 make -j1
21 make DESTDIR=$DESTDIR install
22 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/share
27 cp -a $install/usr/bin $fs/usr
28 cp -a $install/usr/share/scim $fs/usr/share
29 }