mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
24 lines
660 B
Bash
24 lines
660 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Evangelos Foutras <foutrelis@gmail.com>
|
|
# Contributor: zhuqin <zhuqin83@gmail.com>
|
|
|
|
pkgname=gedit-plugins-extra
|
|
pkgver=2.24.1
|
|
pkgrel=4
|
|
pkgdesc="An unofficial set of plugins for gedit"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.nanolx.org/"
|
|
license=('GPL')
|
|
depends=('gedit' 'gnome-python' 'dbus-python')
|
|
optdepends=('ctags: for the class browser')
|
|
makedepends=('gnome-common')
|
|
source=(http://www.nanolx.org/free/$pkgname-$pkgver.tar.bz2)
|
|
md5sums=('b3f7b551b291ae426e45ac3be1183396')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname"
|
|
./autogen.sh --prefix=/usr
|
|
|
|
make || return 1
|
|
make DESTDIR="$pkgdir/" install
|
|
}
|