mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
23 lines
674 B
Bash
23 lines
674 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Contributor: William Rea <sillywilly@gmail.com>
|
|
|
|
pkgname=amyedit
|
|
pkgver=1.0
|
|
pkgrel=3
|
|
pkgdesc="A gtkmm LaTeX editor"
|
|
arch=('i686' 'x86_64')
|
|
url="http://amyedit.sourceforge.net"
|
|
license=('GPL')
|
|
depends=('gtkmm' 'gtksourceview' 'aspell')
|
|
makedepends=('intltool')
|
|
#install=$pkgname.install
|
|
source=(http://downloads.sourceforge.net/sourceforge/amyedit/amyedit-$pkgver.tar.bz2)
|
|
md5sums=('662f5d6cc37c5838e2dc5a4a6abb812d')
|
|
|
|
build() {
|
|
#export export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/opt/gnome/lib/pkgconfig
|
|
cd $startdir/src/amyedit-$pkgver
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install
|
|
}
|