mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
33 lines
929 B
Bash
33 lines
929 B
Bash
# $Id: PKGBUILD 1907 2009-09-06 11:25:24Z ibiru $
|
|
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
|
|
# Contributor: Alexander Fehr <pizzapunk gmail com>
|
|
# Contributor: pressh <pressh at gmail dot com>
|
|
|
|
pkgname=kazehakase
|
|
pkgver=0.5.7
|
|
pkgrel=1
|
|
pkgdesc="GTK+ web browser that uses the Gecko rendering engine"
|
|
arch=('i686' 'x86_64')
|
|
url="http://kazehakase.sourceforge.jp/"
|
|
license=('GPL')
|
|
depends=('xulrunner')
|
|
makedepends=('intltool')
|
|
options=('!libtool')
|
|
source=($pkgname-$pkgver.tar.gz
|
|
fix_gtk_entry.patch)
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
patch -Np1 -i $srcdir/fix_gtk_entry.patch || return 1
|
|
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--with-gecko-engine=libxul \
|
|
--disable-gtkmozembed \
|
|
--with-ruby=no \
|
|
--with-rgettext=no
|
|
make || return 1
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
}
|
|
md5sums=('1f01892d8a0775c71a856d303a1e32bd'
|
|
'a14679bd8507720014292001a51119ca')
|