wok view libirman/receipt @ rev 16009

go: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 04 16:30:31 2014 +0000 (2014-03-04)
parents 5c6c9ee5f21e
children c32b9127bdcd
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"
14 DEPENDS="glibc-base"
15 BUILD_DEPENDS="slitaz-toolchain"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
22 ./configure \
23 --prefix=/usr \
24 --sysconfdir=/etc \
25 $CONFIGURE_ARGS &&
26 make &&
27 make DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib
34 cp -a $install/usr/lib/*.so* $fs/usr/lib
35 cp -a $install/usr/bin $fs/usr
36 cp -a $install/etc $fs
37 }