wok view ctags/receipt @ rev 22238

updated xorg-makedepend (1.0.4 -> 1.0.6)
author Hans-G?nter Theisgen
date Tue Nov 12 09:08:19 2019 +0100 (2019-11-12)
parents eb8067417980
children 9af0e03b8ad0
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 LICENSE="GPL2"
9 WEB_SITE="http://ctags.sourceforge.net/"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 BUILD_DEPENDS=""
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 ./configure \
19 --prefix=/usr \
20 $CONFIGURE_ARGS &&
21 make &&
22 make prefix=$DESTDIR/usr install
24 cook_pick_manpages ctags.1
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 cook_copy_files ctags
31 }