Advertisement
Localizator

PKGBUILD

Apr 14th, 2015
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.82 KB | None | 0 0
  1. # Maintainer: Jerome Leclanche <[email protected]>
  2. # Contributor: Andrea Scarpino <[email protected]>
  3. # Contributor: Pier Luigi Fiorini <[email protected]>
  4.  
  5. pkgname=qt5-quick1-git
  6. pkgver=v5.5.0.alpha1.5.g15daa5f
  7. pkgrel=1
  8. pkgdesc="A cross-platform application and UI framework (QtDeclarative)"
  9. arch=('i686' 'x86_64')
  10. url="http://qt-project.org/"
  11. license=('GPL3' 'LGPL')
  12. depends=('qt5-script' 'mesa')
  13. provides=('qt5-quick1')
  14. conflicts=('qt5-quick1')
  15. makedepends=('git')
  16. source=("git+https://gitorious.org/qt/qtquick1.git#branch=5.5")
  17. sha256sums=('SKIP')
  18. _gitname='qtquick1'
  19.  
  20. pkgver() {
  21.     cd "$srcdir/$_gitname"
  22.     git describe --always | sed 's|-|.|g'
  23. }
  24.  
  25. build() {
  26.     cd "$srcdir/$_gitname"
  27.     qmake
  28.     make
  29. }
  30.  
  31. package() {
  32.     cd "$srcdir/$_gitname"
  33.     make INSTALL_ROOT="${pkgdir}" install
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement