-
-
Notifications
You must be signed in to change notification settings - Fork 137
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(tenacity-git): upd pacscript to new version #6732
base: master
Are you sure you want to change the base?
Conversation
PR OK for me, Testing fail but it's fine like this. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This isn't what "fix" is for.
I don't understand. The script was broken. I have fixed it. I also incremented the version to fit the new revision. Maybe need a better title ? Sorry, really I don't understand what you want :) |
Any package update can include fixes and don't have to be labeled as a fix. So you should change the title to an |
incompatible=("ubuntu:bionic" "ubuntu:focal" "ubuntu:jammy" "debian:stretch" "debian:buster" "debian:bullseye") | ||
replaces=("audacity") | ||
maintainer=("echometerain <[email protected]>" "xdavius <[email protected]>") | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
for i in *; do # fix for png icons not following hicolor category folders | ||
cd "${i}" | ||
mkdir -p apps | ||
test -f tenacity.png && mv tenacity.png apps |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
test -f tenacity.png && mv tenacity.png apps | |
[[ -f tenacity.png ]] && mv tenacity.png apps |
-Wno-dev \ | ||
.. | ||
cmake --build . | ||
make -j"$(NCPU)" . |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
make -j"$(NCPU)" . | |
make -j"${NCPU}" . |
cmake --install build | ||
cd tenacity/build | ||
make DESTDIR="${pkgdir}" install | ||
test -f "${pkgdir}/usr/tenacity" && rm "${pkgdir}/usr/tenacity" # remove unused launch script |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
test -f "${pkgdir}/usr/tenacity" && rm "${pkgdir}/usr/tenacity" # remove unused launch script | |
[[ -f "${pkgdir}/usr/tenacity" ]] && rm "${pkgdir}/usr/tenacity" # remove unused launch script |
No description provided.