mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 22:34:51 +08:00
28 lines
675 B
Bash
28 lines
675 B
Bash
# Maintainer: abveritas[at]chakra-project[dot]org>
|
|
|
|
pkgname=texinfo
|
|
pkgver=5.1
|
|
pkgrel=2
|
|
pkgdesc="Utilities to work with and produce manuals, ASCII text, and on-line documentation from a single source file"
|
|
arch=('x86_64')
|
|
url="http://www.gnu.org/software/texinfo/"
|
|
license=('GPL3')
|
|
groups=('base')
|
|
depends=('ncurses' 'findutils' 'gzip' 'sh' 'perl')
|
|
install=texinfo.install
|
|
source=("ftp://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz")
|
|
md5sums=('52ee905a3b705020d2a1b6ec36d53ca6')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
|
|
make DESTDIR=${pkgdir} install
|
|
}
|