Advertisement
Guest User

webissues PKGBUILD

a guest
Nov 25th, 2013
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. # Maintainer: Ezra Sharp <nicekiwi@gmail.com>
  2. # Contributor: Dustin Falgout <dustin@falgout.us>
  3.  
  4. pkgname=webissues
  5. pkgver=1.1
  6. pkgrel=1
  7. pkgdesc='An open source, multi-platform system for issue tracking and team collaboration.'
  8. arch=('any')
  9. url='http://webissues.mimec.org/'
  10. license=('GPL3')
  11. depends=('qt4>=4.7' 'php>=5.2.1' 'mariadb')
  12. conflicts=('webissues')
  13. provides=('webissues')
  14. source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2")
  15. sha1sums=('36ef420106c3380221e33b1f91c1b461e0db9c54')
  16.  
  17. build() {
  18. cd "${srcdir}/${pkgname}-${pkgver}"
  19. ./configure -prefix /usr/ -system-sqlite -destdir ${pkgdir}/
  20. make
  21. }
  22.  
  23. package() {
  24. cd "${srcdir}/${pkgname}-${pkgver}"
  25. make DESTDIR="${pkgdir}/" install
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement