wok view sc-im/receipt @ rev 25669

Up lapack (3.12.0), less (633), libarchive (3.7.2), liblouis (3.28.0), libmicrohttpd (1.0.1), libpng (1.6.43), libssh (0.10.6), libtasn1 (4.19.0), libtirpc (1.3.4), libvpx (1.14.0), libwebp (1.3.2), logrotate (3.21.0), lua (5.4.6)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Feb 25 16:11:20 2024 +0000 (12 months ago)
parents 59547e97954f
children 621bae86270e
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 LICENSE="BSD"
8 MAINTAINER="paul@slitaz.org"
9 WEB_SITE="https://github.com/andmarti1424/sc-im"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 #WGET_URL="git|git://github.com/andmarti1424/sc-im"
13 # Do not use git, because that might fetch an unreleased version
14 # as happened with 0.8.3 in place of 0.8.2
15 WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz"
17 DEPENDS="ncursesw"
18 BUILD_DEPENDS="bison ncursesw-dev"
20 # What is the latest version available today?
21 current_version()
22 {
23 wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \
24 sed '/tag\//!d;s|.*tag/v*||;s|".*||;q'
25 }
27 # Rules to configure and make the package.
28 compile_rules()
29 {
30 export CFLAGS="$CFLAGS -std=c99"
31 cd $src/src
32 # Do not override name = scim in Makefile,
33 # in order to avoid conflicts with the package scim
34 make -j1 prefix=/usr &&
35 make install prefix=/usr
36 }
38 # Rules to gen a SliTaz package suitable for Tazpkg.
39 genpkg_rules()
40 {
41 # Program name changed to sc-im
42 cook_copy_files sc-im sc-im_help
43 }