talimat 534 B

12345678910111213141516171819202122232425262728
  1. # Tanım: İkili dosyalar için bir boyut profilci
  2. # URL: https://github.com/google/bloaty
  3. # Paketçi: Cihan_Alkan
  4. # Gerekler: cmake
  5. # Grup: sistem
  6. isim=bloaty
  7. surum=git
  8. devir=1
  9. kaynak=()
  10. derle() {
  11. adres="https://github.com/google/bloaty"
  12. git_indir ${adres} ${isim}
  13. cd $SRC/${isim}
  14. rm -rf "${SRC}/build"
  15. mkdir "${SRC}/build"
  16. cd "${SRC}/build"
  17. cmake -G 'Unix Makefiles' \
  18. -DCMAKE_INSTALL_PREFIX=/usr \
  19. "${SRC}/bloaty"
  20. make
  21. install -Dm755 "${SRC}/build/bloaty" "${PKG}/usr/bin/bloaty"
  22. }