mirror of
https://github.com/ivabus/pantry
synced 2025-06-08 08:20:32 +03:00
+test gnu.org/autoconf (#107)
This commit is contained in:
parent
a32cd0e80a
commit
a5ac760ff4
3 changed files with 15 additions and 1 deletions
4
projects/gnu.org/autoconf/configure.ac
Normal file
4
projects/gnu.org/autoconf/configure.ac
Normal file
|
@ -0,0 +1,4 @@
|
|||
AC_INIT([hello], [1.0])
|
||||
AC_CONFIG_SRCDIR([hello.c])
|
||||
AC_PROG_CC
|
||||
AC_OUTPUT
|
3
projects/gnu.org/autoconf/hello.c
Normal file
3
projects/gnu.org/autoconf/hello.c
Normal file
|
@ -0,0 +1,3 @@
|
|||
int foo(void) {
|
||||
return 42;
|
||||
}
|
|
@ -28,4 +28,11 @@ build:
|
|||
--prefix="{{ prefix }}"
|
||||
make --jobs {{ hw.concurrency }} install
|
||||
|
||||
test: true #FIXME
|
||||
test:
|
||||
dependencies:
|
||||
tea.xyz/gx/cc: c99
|
||||
script: |
|
||||
autoconf
|
||||
./configure
|
||||
test -f config.status
|
||||
test -f config.log
|
||||
|
|
Loading…
Reference in a new issue