wok view sc-im/receipt @ rev 24136

packaged sc-im 0.8.2 really
author Hans-G?nter Theisgen
date Sun Nov 07 07:21:12 2021 +0100 (2021-11-07)
parents 0b484bb7209b
children 8eaf1d9eb640
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.gz"
11 #WGET_URL="git|git://github.com/andmarti1424/sc-im"
12 # Do not use git, because that might fetch an unreleased version
13 # as happened with 0.8.3 in place of 0.8.2
14 WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz"
16 DEPENDS="ncursesw"
17 BUILD_DEPENDS="bison ncursesw-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 export CFLAGS="$CFLAGS -std=c99"
23 cd $src/src
24 # Do not override name = scim in Makefile,
25 # in order to avoid conflicts with the package scim
26 make -j1 prefix=/usr &&
27 make install prefix=/usr
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 # Program name changed to sc-im
34 cook_copy_files sc-im sc-im_help
35 }