wok view gf2x/receipt @ rev 22099

Add python-incremental
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Nov 01 14:48:33 2019 +0100 (2019-11-01)
parents 380ffe05937a
children 44b836c51f50
line source
1 # SliTaz package receipt.
3 PACKAGE="gf2x"
4 VERSION="1.2"
5 CATEGORY="misc"
6 SHORT_DESC="gf2x is a library for multiplying polynomials over the binary field."
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="GPL2"
9 WEB_SITE="https://gforge.inria.fr/projects/gf2x/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://gforge.inria.fr/frs/download.php/file/36934/$TARBALL"
14 DEPENDS=""
15 BUILD_DEPENDS=""
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure $CONFIGURE_ARGS &&
21 make -j 1 &&
22 make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $install/usr/lib/*.so* $fs/usr/lib
30 }