new file: projects/linux-pam.org/package.yml

new file:   projects/linux-pam.org/test.c
This commit is contained in:
Andrii Riabchenko 2023-10-09 19:07:28 +03:00 committed by Jacob Heider
parent 4d1459ea22
commit 761fec27f2
2 changed files with 66 additions and 0 deletions

View file

@ -0,0 +1,56 @@
distributable:
url: https://github.com/linux-pam/linux-pam/releases/download/v{{version}}/Linux-PAM-{{version}}.tar.xz
strip-components: 1
versions:
github: linux-pam/linux-pam
platforms:
- linux
dependencies:
github.com/thkukuk/libnsl: '*'
sourceforge.net/libtirpc: '*'
github.com/besser82/libxcrypt: '*'
build:
dependencies:
freedesktop.org/pkg-config: '*'
gnu.org/gcc: '*'
gnu.org/make: '*'
script:
- ./configure $CONFIGURE_ARGS
- make --jobs {{ hw.concurrency }}
- make --jobs {{ hw.concurrency }} install
- run: |
sed -i.bak "s|{{prefix}}|\$(dirname \$0)/..|g" pam_namespace_helper
rm *.bak
working-directory: "{{prefix}}/sbin"
env:
CONFIGURE_ARGS:
- --disable-debug
- --disable-dependency-tracking
- --prefix="{{prefix}}"
- --libdir="{{prefix}}/lib"
- --disable-db
- --disable-silent-rules
- --disable-selinux
- --includedir={{prefix}}/include/security
- --oldincludedir={{prefix}}/include
- --enable-securedir={{prefix}}/lib/security
- --sysconfdir={{prefix}}/etc
- --with-xml-catalog={{prefix}}/etc/xml/catalog
provides:
- sbin/faillock
- sbin/mkhomedir_helper
- sbin/pam_namespace_helper
- sbin/pam_timestamp_check
- sbin/pwhistory_helper
- sbin/unix_chkpwd
- sbin/unix_update
test:
dependencies:
freedesktop.org/pkg-config: '*'
gnu.org/gcc: '*'
script:
- mkhomedir_helper || echo $? | grep 14
- pkg-config --modversion pam | grep {{version}}
- cc test.c -o test
- ./test

View file

@ -0,0 +1,10 @@
#include <stdio.h>
#include <stdlib.h>
#include <security/pam_appl.h>
#include <security/pam_client.h>
#include <security/_pam_compat.h>
#include <security/pam_ext.h>
int main() {
return EXIT_SUCCESS;
}