Don't like ads? PRO users don't see any ads ;-)
Guest

gnome-paint 0.4.0 pkgbuild

By: a guest on Jan 4th, 2011  |  syntax: Bash  |  size: 0.64 KB  |  hits: 160  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. # Contributor: CainĂ£ Costa <sryche@archlinux-br.org>
  2. # Contributor: Feufochmar <guill.delacourt@gmail.com>
  3. pkgname=gnome-paint
  4. pkgver=0.4.0
  5. pkgrel=1
  6. pkgdesc="Gnome-paint is a simple, easy to use paint program for GNOME. It is inspired on MS-Paint."
  7. arch=('i686' 'x86_64')
  8. url="https://launchpad.net/gnome-paint"
  9. license=('GPL')
  10. depends=('gtk2')
  11. source=("http://launchpad.net/$pkgname/trunk/$pkgver/+download/$pkgname-$pkgver.tar.gz")
  12. md5sums=('a6c71a0daf065f7bd238b59e598c5f30')
  13.  
  14. build() {
  15.   cd "$srcdir/$pkgname-$pkgver"
  16.  
  17.   ./configure --prefix=/usr
  18.   make || return 1
  19.   make DESTDIR="$pkgdir/" install
  20. }
  21.  
  22. # vim:set ts=2 sw=2 et: