wok annotate libftdi/receipt @ rev 17854
Up: slitaz-boot-scripts (5.7.1)
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Wed Mar 25 00:32:22 2015 +0200 (2015-03-25) |
parents | 4458dff0ca4c |
children | a78610b2eb47 |
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" |
rcx@3715 | 10 WEB_SITE="http://www.intra2net.com/en/developer/libftdi/" |
rcx@3715 | 11 WGET_URL="http://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 } |