2023-01-24 22:16:46 +01:00
|
|
|
# Maintainer: Frederik Schwan <freswa at archlinux dot org>
|
|
|
|
# Contributor: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
|
2022-03-20 13:19:37 +01:00
|
|
|
# Contributor: Allan McRae <allan@archlinux.org>
|
|
|
|
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
|
|
|
|
|
|
|
|
pkgname=texinfo
|
2023-01-24 22:16:46 +01:00
|
|
|
pkgver=7.0.2
|
2023-02-10 21:25:31 +01:00
|
|
|
pkgrel=2
|
2022-03-20 13:19:37 +01: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)
|
|
|
|
source=(https://ftp.gnu.org/pub/gnu/$pkgname/$pkgname-$pkgver.tar.xz{,.sig}
|
|
|
|
texinfo-install.hook
|
2022-11-15 16:49:16 +01:00
|
|
|
texinfo-remove.hook)
|
2023-01-24 22:16:46 +01:00
|
|
|
sha256sums=('f211ec3261383e1a89e4555a93b9d017fe807b9c3992fb2dff4871dae6da54ad'
|
2022-03-20 13:19:37 +01:00
|
|
|
'SKIP'
|
|
|
|
'5409fc3aa8a35e8f3d901e96bc50c986f204d90ce6bface0a7d79d99b487f801'
|
2022-11-15 16:49:16 +01:00
|
|
|
'913ca8aac84386399b0a83ed0f6b04b5e6322da62f5c1d7ed31e1050ed37c1a9')
|
2022-03-20 13:19:37 +01:00
|
|
|
validpgpkeys=('EAF669B31E31E1DECBD11513DDBC579DAB37FBA9') # Gavin Smith
|
|
|
|
|
|
|
|
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/
|
|
|
|
}
|