18 lines
456 B
Text
18 lines
456 B
Text
![]() |
# Description: Programs for reading, writing, and converting info pages
|
||
|
# URL: https://www.gnu.org/software/texinfo/
|
||
|
# Maintainer: emmett1, emmett1.2miligrams at gmail.com
|
||
|
# Depends on: gzip ncurses perl bash
|
||
|
|
||
|
name=texinfo
|
||
|
version=6.6
|
||
|
release=1
|
||
|
source=(https://ftp.gnu.org/gnu/texinfo/$name-$version.tar.xz)
|
||
|
|
||
|
build() {
|
||
|
cd $name-$version
|
||
|
|
||
|
./configure --prefix=/usr --disable-static
|
||
|
make
|
||
|
make DESTDIR=$PKG install
|
||
|
}
|