wok view mtdev/receipt @ rev 23052
gnustep-base: fix libffi path
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Mar 06 17:04:10 2020 +0100 (2020-03-06) |
parents | c1cdacb7defd |
children | 36b510df123b |
line source
1 # SliTaz package receipt.
3 PACKAGE="mtdev"
4 VERSION="1.1.5"
5 CATEGORY="development"
6 SHORT_DESC="Multitouch Protocol Translation Library."
7 MAINTAINER="mojo@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="http://bitmath.org/code/mtdev/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="$WEB_SITE$TARBALL"
14 HOST_ARCH="i486 arm"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure $CONFIGURE_ARGS &&
20 make &&
21 make install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
29 cp -a $install/usr/lib/*.so* $fs/usr/lib
30 cp -a $install/usr/bin $fs/usr
31 }