Pkgfile 732 B

123456789101112131415161718192021222324252627
  1. # Description: Pidgin is a chat program which lets you log into accounts on multiple chat networks simultaneously.
  2. # URL: https://pidgin.im/
  3. # Maintainer: Daniel Azevedo, daniazevedo77 at posteo dot net
  4. # Depends on: libpurple gtk xorg-libxscrnsaver startup-notification nss libidn xorg-libxdamage gtkspell
  5. name=pidgin
  6. version=2.14.13
  7. release=2
  8. source=(https://master.dl.sourceforge.net/project/pidgin/Pidgin/2.14.13/pidgin-2.14.13.tar.gz)
  9. build() {
  10. cd $name-$version
  11. ./configure --prefix=/usr \
  12. --disable-gtkspell \
  13. --disable-gevolution \
  14. --disable-vv \
  15. --disable-idn \
  16. --disable-meanwhile \
  17. --disable-avahi \
  18. --disable-nm \
  19. --disable-tcl
  20. make
  21. make DESTDIR=$PKG install
  22. rm -rf $PKG/usr/share/locale/
  23. }