diff options
author | Christian Breunig <christian@breunig.cc> | 2024-11-21 20:01:19 +0100 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2024-11-21 20:02:06 +0100 |
commit | ef9e1f84c1eb5e1fed28bdf741cf4c24f236d497 (patch) | |
tree | b15f3e0c5dd2ab59f740983c821edf47cd926c60 /scripts/package-build/tacacs/package.toml | |
parent | 4d01efaacf195f93e60aba0d7e27ab07f9bedf27 (diff) | |
download | vyos-build-ef9e1f84c1eb5e1fed28bdf741cf4c24f236d497.tar.gz vyos-build-ef9e1f84c1eb5e1fed28bdf741cf4c24f236d497.zip |
T6674: add package build instructions for TACACS client libraries
Diffstat (limited to 'scripts/package-build/tacacs/package.toml')
-rw-r--r-- | scripts/package-build/tacacs/package.toml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/scripts/package-build/tacacs/package.toml b/scripts/package-build/tacacs/package.toml new file mode 100644 index 00000000..ec50ca85 --- /dev/null +++ b/scripts/package-build/tacacs/package.toml @@ -0,0 +1,24 @@ +[[packages]] +name = "libtacplus-map" +commit_id = "master" +scm_url = "https://github.com/vyos/libtacplus-map.git" +build_cmd = "dpkg-buildpackage -us -uc -tc -b" + +[[packages]] +name = "libpam-tacplus" +commit_id = "master" +scm_url = "https://github.com/vyos/libpam-tacplus.git" +build_cmd = "sudo dpkg -i ../libtacplus-map*.deb; dpkg-buildpackage -us -uc -tc -b" + +[[packages]] +name = "libnss-tacplus" +commit_id = "master" +scm_url = "https://github.com/vyos/libnss-tacplus.git" +build_cmd = "sudo dpkg -i ../libtac*.deb ../libpam-tacplus*.deb; dpkg-buildpackage -us -uc -tc -b" + +[packages.dependencies] +packages = [ + "libpam-dev", + "autoconf-archive", + "libaudit-dev" +] |