Merge pull request #2732 from lazka/add-autotools

Add an autotools meta package
This commit is contained in:
Christoph Reiter 2021-12-11 13:19:23 +01:00 committed by GitHub
commit 3d0fc59e9f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 22 additions and 0 deletions

19
autotools/PKGBUILD Normal file
View File

@ -0,0 +1,19 @@
# Maintainer: Christoph Reiter <reiter.christoph@gmail.com>
pkgname=autotools
pkgver=2021.12.10
pkgrel=1
pkgdesc="A meta package for the GNU autotools build system"
arch=('any')
license=('GPL')
url="https://www.gnu.org/software/automake/manual/html_node/Autotools-Introduction.html"
depends=(
'autoconf'
'automake-wrapper'
'gettext'
'libtool'
'make'
'pkg-config'
)
source=(README.md)
sha256sums=('de6ec37dee4875be8e2759dea340f6c1bbdc04457333dc666dcb81b00962a145')

3
autotools/README.md Normal file
View File

@ -0,0 +1,3 @@
The goal of this package is to depend on everything that is (usually)
needed for running autogen/autoreconf if needed,
configure and make, but not a compiler.