You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

jitsi-meet.README.source 875B

123456789101112131415161718192021222324
  1. jitsi-meet for Debian
  2. ---------------------
  3. The jitsi-meet package is built from the sources of Jitsi Meet.
  4. Jitsi Meet is downloaded from https://github.com/jitsi/jitsi-meet and the git files are removed. you can recreate the source with 'git clone https://github.com/jitsi/jitsi-meet.git'.
  5. Use something like the script below to update from Git
  6. #!/bin/bash
  7. VERSION=1.0.1
  8. echo "*.min.js export-ignore" > .gitattributes
  9. echo "jquery-2.1.1.* export-ignore" >> .gitattributes
  10. echo "jquery-ui.js export-ignore" >> .gitattributes
  11. echo ".gitignore export-ignore" >> .gitattributes
  12. sed -i "s/1.0.1/$VERSION/g" debian/changelog
  13. git archive --worktree-attributes --format tar --prefix jitsi-meet-$VERSION/ -o ../jitsi-meet_${VERSION}.orig.tar master
  14. tar --transform "s,^,jitsi-meet-$VERSION/," -rf ../jitsi-meet_${VERSION}.orig.tar
  15. cd ..
  16. bzip2 jitsi-meet_${VERSION}.orig.tar