wok view ctags/receipt @ rev 10961

Add:laptop-mode-tools,util-linux-ng-blockdev
author Liu Peng <hipeng@yahoo.com>
date Tue Sep 20 20:44:27 2011 +0800 (2011-09-20)
parents 2844c9a2b253
children eb8067417980
line source
1 # SliTaz package receipt.
3 PACKAGE="ctags"
4 VERSION="5.8"
5 CATEGORY="utilities"
6 SHORT_DESC="Generates an index file of language objects found in source files."
7 MAINTAINER="rocky@slitaz.org"
8 BUILD_DEPENDS=""
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://ctags.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure --prefix=/usr \
18 $CONFIGURE_ARGS &&
19 make &&
20 make prefix=$PWD/_pkg/usr install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr
27 cp -a $_pkg/usr/bin $fs/usr
28 }