wok view ctags/receipt @ rev 5953

Up: exiftool 8.27
author Antoine Bodin <gokhlayeh@mailoo.org>
date Tue Aug 03 22:23:30 2010 +0200 (2010-08-03)
parents
children 7130b9831b50
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="glibc-dev linux-headers"
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 }