wok-current view libirman/receipt @ rev 16532
ARM: add libirman
| author | Christophe Lincoln <pankso@slitaz.org> | 
|---|---|
| date | Sat Apr 26 22:30:13 2014 +0200 (2014-04-26) | 
| 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 }