wok annotate libftdi/receipt @ rev 22959

updated iptables and iptables-dev again (1.4.21 -> 1.8.4)
author Hans-G?nter Theisgen
date Fri Feb 28 16:00:30 2020 +0100 (2020-02-28)
parents 8f447cf2eee5
children ede1d184d5c5
rev   line source
rcx@3715 1 # SliTaz package receipt.
rcx@3715 2
rcx@3715 3 PACKAGE="libftdi"
rcx@6009 4 VERSION="0.18"
rcx@3715 5 CATEGORY="system-tools"
rcx@3715 6 SHORT_DESC="A library to talk to FTDI chips using libusb."
rcx@3715 7 MAINTAINER="rcx@zoominternet.net"
pascal@15473 8 LICENSE="BSD GPL2 LGPL2"
rcx@3715 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@20669 10 WEB_SITE="https://www.intra2net.com/en/developer/libftdi/"
pascal@20669 11 WGET_URL="https://www.intra2net.com/en/developer/libftdi/download/$TARBALL"
rcx@3715 12
pascal@15473 13 DEPENDS="glibc-base libusb libusb-compat gcc-lib-base"
pascal@15473 14 BUILD_DEPENDS="slitaz-toolchain libusb-dev libusb libusb-compat"
pascal@15473 15
rcx@3715 16 # Rules to configure and make the package.
rcx@3715 17 compile_rules()
rcx@3715 18 {
rcx@3715 19 cd $src
rcx@3715 20 ./configure \
rcx@3715 21 --prefix=/usr \
rcx@3715 22 $CONFIGURE_ARGS &&
rcx@3715 23 make &&
pascal@11821 24 make DESTDIR=$DESTDIR install
rcx@3715 25 }
rcx@3715 26
rcx@3715 27 # Rules to gen a SliTaz package suitable for Tazpkg.
rcx@3715 28 genpkg_rules()
rcx@3715 29 {
rcx@3715 30 mkdir -p $fs/usr/lib
pascal@15473 31 cp -a $install/usr/lib/*.so* $fs/usr/lib
pascal@15473 32 cp -a $install/usr/bin $fs/usr
rcx@3715 33 }