talimat 582 B

123456789101112131415161718192021222324
  1. # Tanım: chroot,mount --bind ve binfmt_misc ayrıcalık/kurulum olmaksızın
  2. # URL: http://proot.me
  3. # Paketçi: Cihan_Alkan
  4. # Gerekler: talloc python-docutils libxslt
  5. # Grup: sistem
  6. isim=proot
  7. surum=git
  8. devir=1
  9. kaynak=()
  10. derle() {
  11. adres="https://github.com/proot-me/PRoot"
  12. git_indir ${adres} ${isim}
  13. cd $SRC/${isim}/src
  14. make -f GNUmakefile
  15. cd ../
  16. install -m755 -d "${PKG}"/usr/bin
  17. install -m755 $SRC/${isim}/src/${isim} "${PKG}"/usr/bin
  18. install -m755 -d "${PKG}"/usr/share/man/man1/
  19. install -m644 -T $SRC/${isim}/doc/proot/man.1 "${PKG}"/usr/share/man/man1/${isim}.1
  20. }