wok-next view ctags/receipt @ rev 21721

created recipes for efivar and efibootmgr
author Hans-G?nter Theisgen
date Tue Sep 01 10:09:15 2020 +0100 (2020-09-01)
parents f463de72afe3
children
line source
1 # SliTaz package receipt v2.
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="devel@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://ctags.sourceforge.net/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 compile_rules() {
15 ./configure \
16 --prefix=/usr \
17 $CONFIGURE_ARGS &&
18 make &&
19 make prefix=$install/usr install || return 1
21 cook_pick_manpages ctags.1
22 }
24 genpkg_rules() {
25 copy ctags
26 }