djmattyg007

New PKGBUILD for zeal package in AUR

Apr 11th, 2016
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.80 KB | None | 0 0
  1. # Maintainer: Thomas Weißschuh <thomas t-8ch de>
  2. # Contributor: Matthew Gamble
  3.  
  4. pkgname=zeal
  5. epoch=1
  6. pkgver=0.2.1
  7. pkgrel=2
  8. pkgdesc='Simple offline API documentation browser'
  9. arch=('x86_64' 'i686')
  10. url='http://zealdocs.org/'
  11. license=('GPL')
  12. depends=('qt5-webkit' 'hicolor-icon-theme' 'desktop-file-utils' 'libarchive' 'qt5-x11extras')
  13. conflicts=('zeal-git')
  14. install=zeal.install
  15. source=("zeal-${pkgver}.tar.gz::https://github.com/zealdocs/zeal/archive/v${pkgver}.tar.gz"
  16.   "zeal.install")
  17. sha256sums=('994c5fad079cb34952fc05b0663920118489ed7f00f8e5a5887ff2e2bd05861d'
  18.             '00c8482dd54eaa217682adee62267e8b9e45cc72842cba82ae7de370301cd4eb')
  19.  
  20. build() {
  21.     cd "zeal-${pkgver}"
  22.     qmake-qt5
  23.     make
  24. }
  25.  
  26. package() {
  27.     cd "zeal-${pkgver}"
  28.     make INSTALL_ROOT="$pkgdir/" install
  29. }
Advertisement
Add Comment
Please, Sign In to add comment