talimat 514 B

12345678910111213141516171819202122
  1. # Description: Hafif vala tabanlı Tox istemcisi
  2. # URL: https://github.com/RicinApp/Ricin
  3. # packager: milisarge
  4. # Depends on: toxcore meson gtk3 vala json-glib libsoup libnotify
  5. name=ricin
  6. _name=Ricin
  7. version=0.0.7
  8. release=1
  9. source=(https://github.com/RicinApp/${_name}/archive/v${version}.tar.gz)
  10. build() {
  11. cd ${_name}-${version}
  12. make autogen
  13. make release
  14. cd build
  15. mesonconf.py -Dprefix=/usr
  16. cd ..
  17. make DESTDIR=$PKG install
  18. install -Dm755 "build/${_name}" "$PKG/usr/bin/ricin"
  19. }