Advertisement
Guest User

PKGBUILD for geany-plugins-git

a guest
May 17th, 2016
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.04 KB | None | 0 0
  1. # Maintainer: youngunix <zagazaw2004 () gmail ()>
  2. # {former}Maintainer: Alexander Rødseth <rodseth@gmail.com>
  3. # Contributor: eht16 <enrico.troeger@uvena.de>
  4. # Contributor: Addict7 <nicolasfloquet@gmail.com>
  5.  
  6. pkgname=geany-plugins-git
  7. pkgver=1.27.0.17.g6122e13
  8. pkgrel=1
  9. pkgdesc='Various plugins for Geany'
  10. arch=('x86_64' 'i686')
  11. url='http://plugins.geany.org/'
  12. license=('GPL')
  13. depends=('geany-git' 'vte' 'lua' 'libwebkit' 'ctpl' 'gpgme' 'gtkspell' 'hicolor-icon-theme')
  14. makedepends=('git' 'libtool' 'python' 'gpgme' 'ctpl' 'lua' 'intltool')
  15. optdepends=('hspell: hebrew spell checker')
  16. install="$pkgname.install"
  17. provides=('geany-plugins')
  18. conflicts=('geany-plugins-svn' 'geany-plugins')
  19. source=('git://github.com/geany/geany-plugins.git')
  20. md5sums=('SKIP')
  21.  
  22. pkgver() {
  23.   cd geany-plugins
  24.   git describe --tags | sed 's/-/./g'
  25. }
  26.  
  27. build() {
  28.   cd geany-plugins
  29.   ./autogen.sh
  30.   ./configure --prefix=/usr --disable-geanypy
  31.   make build
  32. }
  33.  
  34. package() {
  35.   cd geany-plugins
  36.   make install DESTDIR="$pkgdir"
  37. }
  38.  
  39. # vim:set ts=2 sw=2 et:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement