rev |
line source |
al@13723
|
1 # SliTaz package receipt.
|
al@13723
|
2
|
al@13723
|
3 PACKAGE="gf2x"
|
al@13723
|
4 VERSION="1.1"
|
al@13723
|
5 CATEGORY="misc"
|
al@13723
|
6 SHORT_DESC="gf2x is 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/"
|
al@13723
|
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
|
al@13723
|
11 WGET_URL="https://gforge.inria.fr/frs/download.php/30873/$TARBALL"
|
al@13723
|
12
|
al@13723
|
13 DEPENDS=""
|
al@13723
|
14 BUILD_DEPENDS="wget"
|
al@13723
|
15
|
al@13723
|
16 # Rules to configure and make the package.
|
al@13723
|
17 compile_rules()
|
al@13723
|
18 {
|
al@13723
|
19 ./configure $CONFIGURE_ARGS && make && make install
|
al@13723
|
20 }
|
al@13723
|
21
|
al@13723
|
22 # Rules to gen a SliTaz package suitable for Tazpkg.
|
al@13723
|
23 genpkg_rules()
|
al@13723
|
24 {
|
al@13723
|
25 mkdir -p $fs/usr/lib
|
al@13723
|
26 cp -a $install/usr/lib/*.so* $fs/usr/lib
|
al@13723
|
27 }
|