wok diff ptlib/receipt @ rev 17473

syslinux/iso2exe: add 64bits support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Dec 27 17:56:57 2014 +0100 (2014-12-27)
parents 1bf9350b1f2c
children a78610b2eb47
line diff
     1.1 --- a/ptlib/receipt	Tue Nov 01 23:35:26 2011 +0100
     1.2 +++ b/ptlib/receipt	Sat Dec 27 17:56:57 2014 +0100
     1.3 @@ -5,9 +5,11 @@
     1.4  CATEGORY="network"
     1.5  SHORT_DESC="Portable Tools Library for unix and windows."
     1.6  MAINTAINER="pascal.bellard@slitaz.org"
     1.7 +LICENSE="MPL"
     1.8  TARBALL="$PACKAGE-$VERSION.tar.bz2"
     1.9  WEB_SITE="http://www.ekiga.org/"
    1.10  WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
    1.11 +
    1.12  DEPENDS="alsa-lib cyrus-sasl expat libsdl libdv libraw1394 \
    1.13  libunixODBC openssl"
    1.14  BUILD_DEPENDS="pkg-config flex openssl-dev cyrus-sasl-dev zlib-dev alsa-lib-dev"
    1.15 @@ -20,14 +22,14 @@
    1.16  	--libexecdir=/usr/bin --mandir=/usr/share/man \
    1.17  	$CONFIGURE_ARGS &&
    1.18  	make &&
    1.19 -	make DESTDIR=$PWD/_pkg install
    1.20 +	make DESTDIR=$DESTDIR install
    1.21  }
    1.22  
    1.23  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.24  genpkg_rules()
    1.25  {
    1.26  	mkdir -p $fs/usr
    1.27 -	cp -a $_pkg/usr/lib $fs/usr
    1.28 -	cp -a $_pkg/usr/bin $fs/usr
    1.29 -	cp -a $_pkg/usr/share $fs/usr
    1.30 +	cp -a $install/usr/lib $fs/usr
    1.31 +	cp -a $install/usr/bin $fs/usr
    1.32 +	cp -a $install/usr/share $fs/usr
    1.33  }