mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 07:57:13 +08:00
34 lines
987 B
Bash
34 lines
987 B
Bash
#
|
|
# Core Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
pkgname=texinfo
|
|
pkgver=4.13a
|
|
pkgrel=6
|
|
pkgdesc="Utilities to work with and produce manuals, ASCII text, and on-line documentation from a single source file"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.gnu.org/software/texinfo/"
|
|
license=('GPL3')
|
|
groups=('base')
|
|
depends=('ncurses' 'findutils' 'gzip')
|
|
install=texinfo.install
|
|
source=(ftp://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('71ba711519209b5fb583fed2b3d86fcb')
|
|
sha1sums=('a1533cf8e03ea4fa6c443b73f4c85e4da04dead0')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-4.13
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/${pkgname}-4.13
|
|
make DESTDIR=${pkgdir} install
|
|
|
|
# fix this here as it prevent make from trying to rebuild manual pages
|
|
sed -i 's#A-z#A-Za-z#' ${pkgdir}/usr/bin/texi2dvi
|
|
}
|