diff options
author | Daniil Baturin <daniil@vyos.io> | 2024-09-02 15:46:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-02 15:46:50 +0100 |
commit | 9833897b7c70d7a00caef420edea5dd2e359d522 (patch) | |
tree | 7282e5fe204b1aece7985d9397ee49341d715cb3 /scripts/package-build/pam_tacplus/package.toml | |
parent | 013e4d5dc9472c6ea48a8f6e175d1cf9d4ca13d5 (diff) | |
parent | cc7d0993b420c3245e628a818f887411d72530ff (diff) | |
download | vyos-build-9833897b7c70d7a00caef420edea5dd2e359d522.tar.gz vyos-build-9833897b7c70d7a00caef420edea5dd2e359d522.zip |
Merge pull request #745 from sever-sever/T6674
T6674: Add build-scrips for packages without Jenkins
Diffstat (limited to 'scripts/package-build/pam_tacplus/package.toml')
-rw-r--r-- | scripts/package-build/pam_tacplus/package.toml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/scripts/package-build/pam_tacplus/package.toml b/scripts/package-build/pam_tacplus/package.toml new file mode 100644 index 00000000..79b28544 --- /dev/null +++ b/scripts/package-build/pam_tacplus/package.toml @@ -0,0 +1,19 @@ +[[packages]] +name = "pam_tacplus-debian" +commit_id = "50c6fd7" +scm_url = "https://github.com/kravietz/pam_tacplus-debian" +build_cmd = "/bin/true" + +[[packages]] +name = "pam_tacplus" +#commit_id = "4f91b0d" # This commit cannot build the package +commit_id = "b839c44" +scm_url = "https://github.com/kravietz/pam_tacplus" + +#build_cmd = "sudo mk-build-deps --install --tool 'apt-get --yes --no-install-recommends'; cd ..; ./build.sh" +build_cmd = """ +cp -a ../pam_tacplus-debian debian +rm -f debian/compat +sudo mk-build-deps --install --tool 'apt-get --yes --no-install-recommends' +dpkg-buildpackage -uc -us -tc -b -d +""" |