wok annotate libffcall/receipt @ rev 23982

dog: fix bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Nov 21 13:13:55 2020 +0000 (2020-11-21)
parents ecbdf313714b
children 71360a13cd94
rev   line source
paul@4579 1 # SliTaz package receipt.
paul@4579 2
paul@4579 3 PACKAGE="libffcall"
Hans-G?nter@23028 4 VERSION="2.2"
paul@4579 5 CATEGORY="development"
paul@4579 6 SHORT_DESC="Foreign function call libraries."
paul@4579 7 MAINTAINER="paul@slitaz.org"
pascal@15472 8 LICENSE="GPL2"
Hans-G?nter@21222 9 WEB_SITE="https://www.gnu.org/software/libffcall/"
Hans-G?nter@21222 10
Hans-G?nter@21222 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
Hans-G?nter@21222 12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
pankso@9767 13
paul@4579 14 DEPENDS=""
Hans-G?nter@21222 15 BUILD_DEPENDS=""
paul@4579 16
paul@4579 17 # Rules to configure and make the package.
paul@4579 18 compile_rules()
paul@4579 19 {
gokhlayeh@11573 20 ./configure $CONFIGURE_ARGS &&
Hans-G?nter@21222 21 make -j1 &&
Hans-G?nter@21222 22 make install
paul@4579 23 }
paul@4579 24
paul@4579 25 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@4579 26 genpkg_rules()
paul@4579 27 {
paul@4579 28 mkdir -p $fs/usr/lib
Hans-G?nter@21222 29
Hans-G?nter@23028 30 cp -a $install/usr/include $fs/usr
Hans-G?nter@21222 31 cp -a $install/usr/lib $fs/usr
paul@4579 32 }