sourceforge.net/projects/libtirpc (#3187)

* new file:   projects/sourceforge.net/projects/libtirpc/package.yml
	new file:   projects/sourceforge.net/projects/libtirpc/test.c

* fix header paths, package name

* include libc

* non libc test

---------

Co-authored-by: Jacob Heider <jacob@tea.xyz>
This commit is contained in:
Andrew 2023-09-06 21:01:38 +03:00 committed by GitHub
parent d36513a06b
commit 8e302a12ad
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 44 additions and 0 deletions

View file

@ -0,0 +1,35 @@
distributable:
url: https://downloads.sourceforge.net/project/libtirpc/libtirpc/{{version}}/libtirpc-{{version}}.tar.bz2
strip-components: 1
versions:
url: https://sourceforge.net/projects/libtirpc/files/libtirpc/
match: /libtirpc\/\d+\.\d+\.\d+/
strip:
- /^libtirpc\//
platforms:
- linux
dependencies:
kerberos.org: '*'
build:
dependencies:
tea.xyz/gx/cc: c99
tea.xyz/gx/make: '*'
script:
- ./configure $ARGS
- make --jobs {{ hw.concurrency }} install
- run: |
mv tirpc/* .
rmdir tirpc
ln -s . tirpc
working-directory: ${{prefix}}/include
env:
ARGS:
- --disable-dependency-tracking
- --disable-silent-rules
- --prefix={{prefix}}
test:
dependencies:
tea.xyz/gx/cc: c99
script:
- cc test.c -ltirpc -o test
- ./test

View file

@ -0,0 +1,9 @@
// Thanks, ChatGPT!
#include <rpc/rpc.h>
#include <stdio.h>
int main() {
printf("If you see this, the program has linked correctly.\n");
svc_run();
return 0;
}