wok view gf2x/receipt @ rev 20235

busybox: add arch (uname -m alias)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 05 15:52:59 2018 +0100 (2018-03-05)
parents 4e805e1b2e7b
children 384df4d1506d
line source
1 # SliTaz package receipt.
3 PACKAGE="gf2x"
4 VERSION="1.1"
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/"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="https://gforge.inria.fr/frs/download.php/30873/$TARBALL"
13 DEPENDS=""
14 BUILD_DEPENDS="wget"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure $CONFIGURE_ARGS && make && make install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/lib
26 cp -a $install/usr/lib/*.so* $fs/usr/lib
27 }