wok diff wyrd/receipt @ rev 15693

linux-lxc: modify post_install() for update /etc/fstab
author Stanislas Leduc <shann@slitaz.org>
date Sat Dec 21 08:40:56 2013 +0100 (2013-12-21)
parents 93cdefa9f1a7
children 3ba8d2c9720d
line diff
     1.1 --- a/wyrd/receipt	Fri Apr 08 14:08:16 2011 +0000
     1.2 +++ b/wyrd/receipt	Sat Dec 21 08:40:56 2013 +0100
     1.3 @@ -5,12 +5,14 @@
     1.4  CATEGORY="utilities"
     1.5  SHORT_DESC="Wyrd is a text-based front-end to Remind."
     1.6  MAINTAINER="paul@slitaz.org"
     1.7 -DEPENDS="ncurses remind ocaml"
     1.8 -BUILD_DEPENDS="ncurses-dev remind ocaml"
     1.9 +LICENSE="GPL2"
    1.10  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.11  WEB_SITE="http://pessimization.com/software/wyrd/"
    1.12  WGET_URL="http://pessimization.com/software/wyrd/$TARBALL"
    1.13  
    1.14 +DEPENDS="ncurses remind ocaml"
    1.15 +BUILD_DEPENDS="ncurses-dev remind ocaml"
    1.16 +
    1.17  # Rules to configure and make the package.
    1.18  compile_rules()
    1.19  {
    1.20 @@ -21,14 +23,14 @@
    1.21  		--infodir=/usr/share/info \
    1.22  		--mandir=/usr/share/man \
    1.23  		$CONFIGURE_ARGS &&
    1.24 -	make -j1 && make -j1 DESTDIR=$PWD/_pkg install
    1.25 +	make -j1 && make -j1 DESTDIR=$DESTDIR install
    1.26  }
    1.27  
    1.28  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.29  genpkg_rules()
    1.30  {
    1.31  	mkdir -p $fs/usr $fs/etc
    1.32 -	cp -a $_pkg/usr/bin $fs/usr
    1.33 -	cp -a $_pkg/etc/wyrdrc $fs/etc
    1.34 +	cp -a $install/usr/bin $fs/usr
    1.35 +	cp -a $install/etc/wyrdrc $fs/etc
    1.36  }
    1.37