wok-6.x annotate zile/receipt @ rev 14999

Add GPL3 licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Aug 10 13:52:56 2013 +0000 (2013-08-10)
parents adf1e2623e66
children 64ade5018544
rev   line source
domcox@3940 1 # SliTaz package receipt.
domcox@3940 2
domcox@3940 3 PACKAGE="zile"
domcox@7831 4 VERSION="2.3.21"
domcox@3940 5 CATEGORY="development"
domcox@3940 6 SHORT_DESC="GNU Zile is a lightweight Emacs clone."
domcox@3940 7 MAINTAINER="domcox@slitaz.org"
pascal@14999 8 LICENSE="GPL3"
domcox@3940 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
domcox@3940 10 WEB_SITE="http://www.gnu.org/software/zile/"
domcox@3940 11 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
jozee@4978 12 TAGS="text-editor"
domcox@3940 13
pascal@14999 14 DEPENDS="ncurses"
pascal@14999 15 BUILD_DEPENDS="ncurses-dev"
pascal@14999 16
domcox@3940 17 # Rules to configure and make the package.
domcox@3940 18 compile_rules()
domcox@3940 19 {
domcox@3940 20 cd $src
domcox@3940 21 ./configure \
domcox@3940 22 --prefix=/usr \
domcox@3940 23 --infodir=/usr/share/info \
domcox@3940 24 --mandir=/usr/share/man \
domcox@3940 25 $CONFIGURE_ARGS &&
pascal@14999 26 make && make DESTDIR=$DESTDIR install
domcox@3940 27 }
domcox@3940 28
domcox@3940 29 # Rules to gen a SliTaz package suitable for Tazpkg.
domcox@3940 30 genpkg_rules()
domcox@3940 31 {
domcox@3940 32 mkdir -p $fs/usr
pascal@14999 33 ² cp -a $install/usr/bin $fs/usr
domcox@3940 34 }
domcox@3940 35