talimat 1.0 KB

12345678910111213141516171819202122232425262728
  1. # Tanım: HexChat bir IRC sohbet programıdır.
  2. # URL: https://dl.hexchat.net/hexchat
  3. # Paketçi: milisarge
  4. # Gerekler: python3 lua libproxy glib tdb gtk2 dbus libnotify libcanberra pciutils desktop-file-utils pango meson
  5. # Grup: ağ
  6. isim=hexchat
  7. surum=2.14.2
  8. devir=1
  9. kaynak=(https://github.com/hexchat/hexchat/archive/v$surum.tar.gz::$isim-$surum.tar.gz)
  10. derle() {
  11. cd $isim-$surum
  12. milis-meson . build \
  13. -Dwith-lua='lua' \
  14. -Dwith-text='true'
  15. #tamir_masaustu
  16. ninja -C build
  17. DESTDIR="${PKG}" ninja -C build install
  18. sed -i 's/Name=//' ${PKG}/usr/share/applications/io.github.Hexchat.desktop
  19. sed -i 's/GenericName=//' ${PKG}/usr/share/applications/io.github.Hexchat.desktop
  20. sed -i 's/Comment=//' ${PKG}/usr/share/applications/io.github.Hexchat.desktop
  21. sed -i 's/Keywords=//' ${PKG}/usr/share/applications/io.github.Hexchat.desktop
  22. sed -i "/\[Desktop Entry\]/aName\=HexChat\nGenericName\=IRC Client\nComment\=Chat with other people online\nKeywords\=IM;Chat;" \
  23. ${PKG}/usr/share/applications/io.github.Hexchat.desktop
  24. }