PKGBUILDs/core/texinfo/PKGBUILD

50 lines
1.5 KiB
Bash
Raw Normal View History

2023-02-25 22:07:22 +00:00
# Maintainer: Frederik Schwan <freswa at archlinux dot org>
# Contributor: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
# Contributor: Allan McRae <allan@archlinux.org>
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - perl patch to fix a2ps FTBFS
pkgname=texinfo
2023-10-25 12:56:19 +00:00
pkgver=7.1
2023-11-18 14:26:40 +00:00
pkgrel=2
2023-02-25 22:07:22 +00:00
pkgdesc='GNU documentation system for on-line information and printed output'
arch=(x86_64)
url='https://www.gnu.org/software/texinfo/'
license=(GPL3)
depends=(ncurses gzip perl sh)
2023-04-01 21:47:44 +00:00
optdepends=('perl-archive-zip: EPUB file output via texi2any')
2023-02-25 22:07:22 +00:00
source=(https://ftp.gnu.org/pub/gnu/$pkgname/$pkgname-$pkgver.tar.xz{,.sig}
texinfo-install.hook
texinfo-remove.hook
perl.patch)
2023-10-25 12:56:19 +00:00
sha256sums=('deeec9f19f159e046fdf8ad22231981806dac332cc372f1c763504ad82b30953'
2023-02-25 22:07:22 +00:00
'SKIP'
2023-11-18 14:26:40 +00:00
'beb0ff50bd8e8ca1d6e1c01e6a50352f9d25937c62822cf767a7b3d8f7374a9d'
2023-02-25 22:07:22 +00:00
'913ca8aac84386399b0a83ed0f6b04b5e6322da62f5c1d7ed31e1050ed37c1a9'
2023-10-25 12:56:19 +00:00
'c079f32e2b4fa0b6e4baab230943101435c15ad8417d171ac50587d16ed8d926')
2023-02-25 22:07:22 +00:00
validpgpkeys=('EAF669B31E31E1DECBD11513DDBC579DAB37FBA9') # Gavin Smith
prepare() {
cd $pkgname-$pkgver
patch -p1 -i ../perl.patch
}
build() {
cd $pkgname-$pkgver
./configure --prefix=/usr
make
}
check() {
make -C $pkgname-$pkgver check
}
package() {
make -C $pkgname-$pkgver DESTDIR="$pkgdir" install
install -dm755 "$pkgdir"/usr/share/libalpm/hooks/
install -m644 texinfo-{install,remove}.hook "$pkgdir"/usr/share/libalpm/hooks/
}