mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
26 lines
819 B
Bash
26 lines
819 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Allan McRae <allan@archlinux.org>
|
|
# Contributor: Claudio Riva <firetux83@gmail.com>
|
|
|
|
pkgname=winefish
|
|
pkgver=1.3.3
|
|
pkgrel=5
|
|
pkgdesc="LaTeX editor based on Bluefish with auto-completion and syntax highlighting"
|
|
url="http://winefish.berlios.de/"
|
|
arch=('i686' 'x86_64')
|
|
license=('GPL')
|
|
depends=('gtk2')
|
|
makedepends=('pkgconfig')
|
|
optdepends=('aspell: for spell check')
|
|
install=$pkgname.install
|
|
source=(http://download.berlios.de/$pkgname/$pkgname-$pkgver.tgz)
|
|
md5sums=('63531e4dde7a53ab3a74e1152c7af1e9')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr --disable-update-databases \
|
|
--with-freedesktop_org-menu=/usr/share/applications \
|
|
--with-icon-path=/usr/share/pixmaps
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install
|
|
}
|