mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
37 lines
911 B
Bash
37 lines
911 B
Bash
# Maintainer: Douglas Soares de Andrade <dsa@aur.archlinux.org>
|
|
# Contributor: Andrew Conkling <andrewski@fr.st>
|
|
# Contributor: Daniel J Griffiths <ghost1227@archlinux.us>
|
|
|
|
pkgname=scribes
|
|
pkgver=20091008
|
|
pkgrel=1
|
|
pkgdesc="A simple PyGTK+ text editor"
|
|
arch=('i686' 'x86_64')
|
|
url="http://scribes.sourceforge.net"
|
|
license=('GPL')
|
|
depends=('gnome-python-extras' 'gtksourceview' 'gnome-python-desktop' 'gnome-common' 'dbus-python' 'pygtksourceview2' 'gnome-doc-utils' 'xdg-utils' 'gtkspell')
|
|
makedepends=('bzr' 'intltool')
|
|
provides=($_realname)
|
|
conflicts=($_realname)
|
|
source=()
|
|
md5sums=()
|
|
|
|
_bzrbranch=lp:scribes
|
|
|
|
build() {
|
|
cd $srcdir
|
|
|
|
msg "Connecting to the server...."
|
|
|
|
bzr branch $_bzrbranch
|
|
|
|
msg "BZR checkout done or server timeout"
|
|
msg "Starting make..."
|
|
|
|
cd $pkgname
|
|
sed -e 's|REQUIRED_AUTOMAKE_VERSION=1.9||' -i autogen.sh
|
|
./autogen.sh
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install || return 1
|
|
}
|
|
|