mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
49 lines
1.5 KiB
Bash
49 lines
1.5 KiB
Bash
# 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
|
|
pkgver=7.1
|
|
pkgrel=2
|
|
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)
|
|
optdepends=('perl-archive-zip: EPUB file output via texi2any')
|
|
source=(https://ftp.gnu.org/pub/gnu/$pkgname/$pkgname-$pkgver.tar.xz{,.sig}
|
|
texinfo-install.hook
|
|
texinfo-remove.hook
|
|
perl.patch)
|
|
sha256sums=('deeec9f19f159e046fdf8ad22231981806dac332cc372f1c763504ad82b30953'
|
|
'SKIP'
|
|
'beb0ff50bd8e8ca1d6e1c01e6a50352f9d25937c62822cf767a7b3d8f7374a9d'
|
|
'913ca8aac84386399b0a83ed0f6b04b5e6322da62f5c1d7ed31e1050ed37c1a9'
|
|
'c079f32e2b4fa0b6e4baab230943101435c15ad8417d171ac50587d16ed8d926')
|
|
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/
|
|
}
|