talimat 653 B

12345678910111213141516171819202122232425262728
  1. # Tanım: PulseAudio kontrol uygulaması
  2. # URL: https://github.com/fernandotcl/pa-applet
  3. # Paketçi: yasarciv67
  4. # Gerekler: glib gtk3 libnotify pulseaudio
  5. # Grup: sistem medya
  6. isim=pa-applet
  7. surum=2017.09
  8. devir=1
  9. kaynak=(pa-applet.desktop)
  10. derle() {
  11. git clone https://github.com/fernandotcl/pa-applet.git
  12. cd "$isim"
  13. echo $(git rev-list --count HEAD).$(git rev-parse --short HEAD)
  14. CFLAGS+=" -Wno-error"
  15. ./autogen.sh
  16. ./configure --prefix=/usr
  17. make
  18. make DESTDIR="$PKG/" install
  19. install -D -m644 LICENSE "${PKG}/usr/share/licenses/${isim}/LICENSE"
  20. cd ..
  21. install -D pa-applet.desktop "$PKG/etc/xdg/autostart/pa-applet.desktop"
  22. }