wok view sc-im/receipt @ rev 24135

updated sc-im (0.7.0 -> 0.8.2)
author Hans-G?nter Theisgen
date Thu Nov 04 15:33:04 2021 +0100 (2021-11-04)
parents 1a5b7ae238cf
children f9e252411aa1
line source
1 # SliTaz package receipt.
3 PACKAGE="sc-im"
4 VERSION="0.8.2"
5 CATEGORY="office"
6 SHORT_DESC="Spreadsheet Calculator Improved"
7 MAINTAINER="paul@slitaz.org"
8 WEB_SITE="https://github.com/andmarti1424/sc-im"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WGET_URL="git|git://github.com/andmarti1424/sc-im"
13 DEPENDS="ncursesw"
14 BUILD_DEPENDS="bison git ncursesw-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 export CFLAGS="$CFLAGS -std=c99"
20 cd $src/src
21 # Do not override name = scim in Makefile,
22 # in order to avoid conflicts with the package scim
23 make -j1 prefix=/usr &&
24 make install prefix=/usr
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 # Program name changed to sc-im
31 cook_copy_files sc-im sc-im_help
32 }