wok diff libirman/receipt @ rev 9990
libtdb: fix receipt
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Thu May 19 00:22:41 2011 +0200 (2011-05-19) |
parents | |
children | 4904e3d374a9 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/libirman/receipt Thu May 19 00:22:41 2011 +0200 1.3 @@ -0,0 +1,35 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="libirman" 1.7 +VERSION="0.4.5" 1.8 +CATEGORY="utilities" 1.9 +SHORT_DESC="Library for Irman." 1.10 +MAINTAINER="rcx@zoominternet.net" 1.11 +DEPENDS="glibc-base" 1.12 +BUILD_DEPENDS="slitaz-toolchain" 1.13 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.14 +WEB_SITE="http://www.lirc.org/html/install.html" 1.15 +WGET_URL="http://www.lirc.org/software/snapshots/$TARBALL" 1.16 +CONFIG_FILES="/etc/irman.conf" 1.17 + 1.18 +# Rules to configure and make the package. 1.19 +compile_rules() 1.20 +{ 1.21 + cd $src 1.22 + 1.23 + ./configure \ 1.24 + --prefix=/usr \ 1.25 + --sysconfdir=/etc \ 1.26 + $CONFIGURE_ARGS && 1.27 + make && 1.28 + make DESTDIR=$src/_pkg install 1.29 +} 1.30 + 1.31 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.32 +genpkg_rules() 1.33 +{ 1.34 + mkdir -p $fs/usr/lib 1.35 + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 1.36 + cp -a $_pkg/usr/bin $fs/usr 1.37 + cp -a $_pkg/etc $fs 1.38 +}