Advertisement
Guest User

Untitled

a guest
Oct 30th, 2018
694
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. # Maintainer: Maxime Gauduin <alucryd@archlinux.org>
  2. # Contributor: Riley Trautman <asonix@tamu.edu>
  3. # Contributor: Lamelos <lamelos@gmail.com>
  4.  
  5. pkgname=pantheon-mail-git
  6. _pkgname=pantheon-mail
  7. pkgver=r1.4f0c143
  8. pkgrel=1
  9. pkgdesc='The Pantheon Mail Client'
  10. arch=('i686' 'x86_64')
  11. url='https://github.com/elementary/mail'
  12. license=('GPL3')
  13. depends=('cairo' 'gcr' 'gdk-pixbuf2' 'glib2' 'glibc' 'gmime' 'gtk3'
  14. 'libaccounts-glib' 'libcanberra' 'libgee' 'libgsignon-glib'
  15. 'libsecret' 'libxml2' 'pango' 'sqlite' 'webkitgtk'
  16. 'libgranite.so')
  17. makedepends=('meson' 'git' 'gnome-doc-utils' 'gobject-introspection'
  18. 'granite-git' 'intltool' 'vala')
  19. provides=(${_pkgname})
  20. conflicts=(${_pkgname})
  21. replaces=('pantheon-mail-bzr')
  22. source=('git+https://github.com/elementary/mail.git')
  23. sha256sums=('SKIP')
  24.  
  25. pkgver() {
  26. cd ${srcdir}
  27.  
  28. echo "r$(git rev-list --count HEAD).$(git rev-parse --short HEAD)"
  29. }
  30.  
  31. build() {
  32. cd ${srcdir}
  33.  
  34. meson _build mail \
  35. --buildtype release \
  36. --prefix '/usr'
  37. ninja -C _build
  38. }
  39.  
  40. package() {
  41. cd ${srcdir}
  42. DESTDIR="${pkgdir}" ninja -C _build install
  43. }
  44.  
  45. # vim: ts=2 sw=2 et:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement