mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
31 lines
1.1 KiB
Bash
31 lines
1.1 KiB
Bash
# Maintainer: Eric Belanger <eric@archlinux.org>
|
|
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
|
|
|
|
pkgname=bluefish
|
|
pkgver=1.0.7
|
|
pkgrel=4
|
|
pkgdesc="Programmer's HTML editor written using GTK"
|
|
arch=('arm')
|
|
url="http://bluefish.openoffice.nl/"
|
|
license=('GPL')
|
|
depends=('pcre>=6.6-2' 'aspell>=0.60.4-2' 'gnome-vfs' 'desktop-file-utils' 'shared-mime-info')
|
|
makedepends=('pkgconfig')
|
|
install=bluefish.install
|
|
source=(http://www.bennewitz.com/bluefish/stable/source/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('2c3b3c9c8f8e32b9473dfd879f216dea')
|
|
sha1sums=('c61d6271c49e9fa8c728724e6aadde33a227bdea')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
|
|
--with-freedesktop_org-menu=/usr/share/applications \
|
|
--with-freedesktop_org-mime=/usr/share/mime \
|
|
--without-gnome2_4-mime \
|
|
--without-gnome2_4-appreg \
|
|
--with-icon-path=/usr/share/pixmaps \
|
|
--disable-update-databases \
|
|
--without-libgnomeui || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
install -m644 data/bluefish.desktop "${pkgdir}/usr/share/applications/bluefish.desktop" || return 1
|
|
}
|