talimat 673 B

1234567891011121314151617181920212223242526272829303132
  1. # Tanım: 7zip sıkıştırılmış dosya arşivinin konsol uygulaması
  2. # URL: http://p7zip.sourceforge.net
  3. # Paketçi: milisarge
  4. # Gerekler: yasm
  5. # Grup: ağ
  6. isim=p7zip
  7. surum=16.02
  8. devir=1
  9. kaynak=(https://downloads.sourceforge.net/project/$isim/$isim/$surum/${isim}_${surum}_src_all.tar.bz2
  10. CVE-2016-9296.patch)
  11. derle() {
  12. cd ${isim}_$surum
  13. # https://sourceforge.net/p/p7zip/bugs/185/
  14. patch -Np1 -i $SRC/CVE-2016-9296.patch
  15. cp makefile.linux_amd64_asm makefile.machine
  16. make all3
  17. make install \
  18. DEST_DIR="$PKG" \
  19. DEST_HOME=/usr
  20. # Remove documentation for the GUI file manager
  21. rm -r "$PKG/usr/share/doc/"
  22. install -d "${PKG}"/usr/share/licenses/p7zip
  23. }