mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
21 lines
647 B
Bash
21 lines
647 B
Bash
|
# $Id: PKGBUILD 50490 2009-08-28 01:33:45Z allan $
|
||
|
# Maintainer: Douglas Soares de Andrade <douglas@archlinux.org>
|
||
|
|
||
|
pkgname=meld
|
||
|
pkgver=1.3.1
|
||
|
pkgrel=1
|
||
|
pkgdesc="Visual diff and merge tool for GNOME"
|
||
|
arch=(i686 x86_64)
|
||
|
license=('GPL')
|
||
|
url="http://meld.sourceforge.net/"
|
||
|
makedepends=('pkgconfig' 'gnome-doc-utils' 'intltool')
|
||
|
optdepends=('pygtksourceview2' 'gnome-python')
|
||
|
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/1.3/${pkgname}-${pkgver}.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
||
|
make prefix=/usr || return 1
|
||
|
make prefix=/usr DESTDIR="${pkgdir}" install || return 1
|
||
|
}
|
||
|
md5sums=('e153f8d8675659dd0e6563008d4d7b4a')
|