Advertisement
hbernier

PKGBUILD gtksourceview 1.8,5

Sep 2nd, 2011
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.87 KB | None | 0 0
  1. pkgname=gtksourceview
  2. pkgver=1.8.5
  3. pkgrel=1
  4. epoch=
  5. pkgdesc="GtkSourceView is a library that extends the standard GTK+ framework for multiline text editing."
  6. arch=('x86_64')
  7. url="http://projects.gnome.org/gtksourceview/"
  8. license=('LGPL')
  9. groups=()
  10. depends=()
  11. makedepends=()
  12. checkdepends=()
  13. optdepends=()
  14. provides=()
  15. conflicts=()
  16. replaces=()
  17. backup=()
  18. options=()
  19. install=
  20. changelog=
  21. source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/1.8/$pkgname-$pkgver.tar.bz2)
  22. noextract=()
  23. md5sums=('de67df2944c1cccbc2d0b4a738e11050')
  24.  
  25. build() {
  26.   cd "$srcdir/$pkgname-$pkgver"
  27.   CPPFLAGS=-D_GNU_SOURCE ./configure --prefix=/usr --sysconfdir=/etc \
  28.   --localstatedir=/var --disable-static
  29.   make
  30. }
  31.  
  32. check() {
  33.   cd "$srcdir/$pkgname-$pkgver"
  34.   make -k check
  35. }
  36.  
  37. package() {
  38.   cd "$srcdir/$pkgname-$pkgver"
  39.   make DESTDIR="$pkgdir/" install
  40. }
  41.  
  42. # vim:set ts=2 sw=2 et:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement