wok view libmcp23s17/receipt @ rev 24060

Up brotli (1.0.9), tinyssh (20210601), udftools (2.3)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jun 10 07:14:38 2021 +0000 (2021-06-10)
parents 737e56a641f7
children 59547e97954f
line source
1 # SliTaz package receipt.
3 PACKAGE="libmcp23s17"
4 VERSION="0.3.0"
5 CATEGORY="system-tools"
6 SHORT_DESC="A simple C library for accessing an MCP23S17 port expander."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://github.com/piface/libmcp23s17"
11 WGET_URL="https://github.com/piface/libmcp23s17/archive/v${VERSION}.tar.gz"
12 HOST_ARCH="arm"
14 DEPENDS="i2c-tools"
15 TAGS="raspberrypi rpi"
17 current_version()
18 {
19 wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \
20 sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q'
21 }
23 # Rules to configure and make the package.
24 compile_rules()
25 {
26 sed -i \
27 -e s"/^CC=gcc/CC=${HOST_SYSTEM}-gcc/" \
28 -e s"/^CFLAGS=.*/CFLAGS=-c -Wall $CFLAGS/" Makefile
29 make &&
30 ${HOST_SYSTEM}-gcc -o mcp23s17-example example.c -Isrc/ -L. -lmcp23s17
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir -p $fs/usr/bin $fs/usr/lib $fs/usr/include
37 cp -a ${src}/*-example $fs/usr/bin
38 cp -a ${src}/${PACKAGE}.a ${fs}/usr/lib
39 cp -a ${src}/src/mcp23s17.h ${fs}/usr/include
40 }