wok view sc-im/receipt @ rev 19177

Up sc-im (20160603)
author Paul Issott <paul@slitaz.org>
date Fri Jun 03 20:48:12 2016 +0100 (2016-06-03)
parents 429840026bf6
children 362c1f0b5004
line source
1 # SliTaz package receipt.
3 PACKAGE="sc-im"
4 VERSION="20160603"
5 CATEGORY="office"
6 SHORT_DESC="Spreadsheet Calculator Improvised."
7 MAINTAINER="paul@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
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 export LDFLAGS="-Wl,--copy-dt-needed-entries"
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
27 cp -a $install/usr/bin $fs/usr
28 cp -a $install/usr/share $fs/usr
29 }