wok view libirman/receipt @ rev 20257

Add giflossy
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 13 23:27:32 2018 +0100 (2018-03-13)
parents 4904e3d374a9
children a4a9b130531d
line source
1 # SliTaz package receipt.
3 PACKAGE="libirman"
4 VERSION="0.4.5"
5 CATEGORY="utilities"
6 SHORT_DESC="Library for Irman."
7 MAINTAINER="rcx@zoominternet.net"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.lirc.org/html/install.html"
11 WGET_URL="http://www.lirc.org/software/snapshots/$TARBALL"
12 CONFIG_FILES="/etc/irman.conf"
13 HOST_ARCH="i486 arm"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 ./configure \
19 --prefix=/usr \
20 --sysconfdir=/etc \
21 $CONFIGURE_ARGS &&
22 make && make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $install/usr/lib/*.so* $fs/usr/lib
30 cp -a $install/usr/bin $fs/usr
31 cp -a $install/etc $fs
32 }