automake1.17: don't use the version in the package name

The version will change in the future, while the "1.17" will stay
the same for files and the package name.
This commit is contained in:
Christoph Reiter 2024-07-27 19:01:43 +02:00
parent 78a211f18c
commit cc14f0ae9f

View File

@ -1,7 +1,8 @@
# Maintainer: Yang Kun <ikspress@outlook.com>
_basever=1.17
pkgname=automake${_basever}
pkgver=1.17
pkgname=automake${pkgver}
pkgrel=1
pkgdesc="A GNU tool for automatically creating Makefiles"
arch=('any')
@ -86,5 +87,5 @@ package() {
rm -rf ${pkgdir}/usr/share/doc
# install the versioned info files
install -Dm644 ${srcdir}/automake-${pkgver}/doc/*${pkgver}.info* -t ${pkgdir}/usr/share/info/
install -Dm644 ${srcdir}/automake-${pkgver}/doc/*${_basever}.info* -t ${pkgdir}/usr/share/info/
}