wok annotate zile/receipt @ rev 10108
Up: sqlite to 3.7.6.3.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Fri May 20 15:24:48 2011 +0000 (2011-05-20) |
parents | 431c5cb9f855 |
children | 2b9f96603415 |
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" |
domcox@3941 | 8 DEPENDS="ncurses" |
domcox@5314 | 9 BUILD_DEPENDS="ncurses-dev" |
domcox@3940 | 10 TARBALL="$PACKAGE-$VERSION.tar.gz" |
domcox@3940 | 11 WEB_SITE="http://www.gnu.org/software/zile/" |
domcox@3940 | 12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" |
jozee@4978 | 13 TAGS="text-editor" |
domcox@3940 | 14 |
domcox@3940 | 15 # Rules to configure and make the package. |
domcox@3940 | 16 compile_rules() |
domcox@3940 | 17 { |
domcox@3940 | 18 cd $src |
domcox@3940 | 19 ./configure \ |
domcox@3940 | 20 --prefix=/usr \ |
domcox@3940 | 21 --infodir=/usr/share/info \ |
domcox@3940 | 22 --mandir=/usr/share/man \ |
domcox@3940 | 23 $CONFIGURE_ARGS && |
domcox@3940 | 24 make && make DESTDIR=$PWD/_pkg install |
domcox@3940 | 25 } |
domcox@3940 | 26 |
domcox@3940 | 27 # Rules to gen a SliTaz package suitable for Tazpkg. |
domcox@3940 | 28 genpkg_rules() |
domcox@3940 | 29 { |
domcox@3940 | 30 mkdir -p $fs/usr |
domcox@3940 | 31 cp -a $_pkg/usr/bin $fs/usr |
domcox@3940 | 32 } |
domcox@3940 | 33 |