wok-next view texinfo/receipt @ rev 20949
Fix homepages
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Sat Sep 01 16:21:51 2018 +0300 (2018-09-01) |
parents | 90a5eb560fd6 |
children | d5aab818505e |
line source
1 # SliTaz package receipt v2.
3 PACKAGE="texinfo"
4 VERSION="6.5"
5 CATEGORY="development"
6 SHORT_DESC="GNU documentation tools"
7 MAINTAINER="rcx@zoominternet.net"
8 LICENSE="GPL3"
9 WEB_SITE="https://www.gnu.org/software/texinfo/"
10 LFS="http://www.linuxfromscratch.org/lfs/view/development/chapter06/texinfo.html"
12 TARBALL="$PACKAGE-$VERSION.tar.xz"
13 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
15 BUILD_DEPENDS="perl-dev ncurses-dev gettext"
17 compile_rules() {
18 ./configure \
19 --disable-static \
20 $CONFIGURE_ARGS &&
21 make &&
22 make install
23 }
25 genpkg_rules() {
26 copy @std @dev
27 DEPENDS="perl"
28 TAGS="LFS documentation"
29 }