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 | |
| 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')
| -rw-r--r-- | scripts/package-build/tacacs/.gitignore | 8 | ||||
| l--------- | scripts/package-build/tacacs/build.py | 1 | ||||
| -rw-r--r-- | scripts/package-build/tacacs/package.toml | 24 |
3 files changed, 33 insertions, 0 deletions
diff --git a/scripts/package-build/tacacs/.gitignore b/scripts/package-build/tacacs/.gitignore new file mode 100644 index 00000000..7588fff4 --- /dev/null +++ b/scripts/package-build/tacacs/.gitignore @@ -0,0 +1,8 @@ +libnss-tacplus/ +libpam-tacplus/ +libtacplus-map/ +*.buildinfo +*.build +*.changes +*.deb +*.dsc diff --git a/scripts/package-build/tacacs/build.py b/scripts/package-build/tacacs/build.py new file mode 120000 index 00000000..3c76af73 --- /dev/null +++ b/scripts/package-build/tacacs/build.py @@ -0,0 +1 @@ +../build.py
\ No newline at end of file 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" +] |
