wok annotate gf2x/receipt @ rev 23803

updated awesome (3.5.1 -> 4.3)
author Hans-G?nter Theisgen
date Sun May 24 07:53:22 2020 +0100 (2020-05-24)
parents 384df4d1506d
children 544e47246b33
rev   line source
al@13723 1 # SliTaz package receipt.
al@13723 2
al@13723 3 PACKAGE="gf2x"
Hans-G?nter@22844 4 VERSION="1.3.0"
al@13723 5 CATEGORY="misc"
Hans-G?nter@22844 6 SHORT_DESC="A library for multiplying polynomials over the binary field."
al@13723 7 MAINTAINER="al.bobylev@gmail.com"
pascal@15000 8 LICENSE="GPL2"
al@13723 9 WEB_SITE="https://gforge.inria.fr/projects/gf2x/"
Hans-G?nter@20963 10
al@13723 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
Hans-G?nter@20963 12 WGET_URL="https://gforge.inria.fr/frs/download.php/file/36934/$TARBALL"
al@13723 13
al@13723 14 DEPENDS=""
Hans-G?nter@20963 15 BUILD_DEPENDS=""
al@13723 16
al@13723 17 # Rules to configure and make the package.
al@13723 18 compile_rules()
al@13723 19 {
Hans-G?nter@20963 20 ./configure $CONFIGURE_ARGS &&
Hans-G?nter@20963 21 make -j 1 &&
Hans-G?nter@20963 22 make install
al@13723 23 }
al@13723 24
al@13723 25 # Rules to gen a SliTaz package suitable for Tazpkg.
al@13723 26 genpkg_rules()
al@13723 27 {
al@13723 28 mkdir -p $fs/usr/lib
Hans-G?nter@22844 29 cp -a $install/usr/lib/*.so* $fs/usr/lib
al@13723 30 }