Core/texinfo/PKGBUILD
2024-09-07 23:18:11 +08:00

34 lines
909 B
Bash

# This is an example PKGBUILD file. Use this as a start to creating your own,
# and remove these comments. For more information, see 'man PKGBUILD'.
# NOTE: Please fill out the license field for your package! If it is unknown,
# then please put 'unknown'.
# Maintainer: Future Linux Team <future_linux@163.com>
pkgname=texinfo
pkgver=7.1
pkgrel=1
pkgdesc="GNU documentation system for on-line information and printed output"
arch=('x86_64')
url="https://www.gnu.org/software/texinfo/"
license=('GPL3')
groups=('base-devel')
depends=('ncurses' 'gzip' 'perl' 'bash')
source=(https://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz)
sha256sums=(deeec9f19f159e046fdf8ad22231981806dac332cc372f1c763504ad82b30953)
build() {
cd ${pkgname}-${pkgver}
${CONFIGURE}
make
}
package() {
cd ${pkgname}-${pkgver}
make DESTDIR=${pkgdir} install
make DESTDIR=${pkgdir} TEXMF=/usr/share/texmf install-tex
}