mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
36 lines
1.1 KiB
Bash
36 lines
1.1 KiB
Bash
# $Id: $
|
|
# Maintainer: Biru Ionut <ionut@archlinux.ro>
|
|
# Contributor: TDY <tdy@gmx.com>
|
|
# Contributor: Alexandru Mizeranschi <lexu_85@yahoo.com>
|
|
# Contributor: Conor Callahan <majikstreet@gmail.com>
|
|
|
|
pkgname=gyachi
|
|
pkgver=1.2.2
|
|
pkgrel=1
|
|
pkgdesc="An improved fork of the GyachE Yahoo! client"
|
|
arch=('i686' 'x86_64')
|
|
url="http://gyachi.sourceforge.net/"
|
|
license=('GPL')
|
|
depends=('jasper' 'libgtkhtml' 'libmcrypt' 'libnotify' 'libv4l' 'gpgme'
|
|
'gtkspell')
|
|
makedepends=('pkgconfig' 'alsa-lib' 'pulseaudio' 'imagemagick')
|
|
optdepends=('pulseaudio: for pulseaudio support')
|
|
options=('!libtool')
|
|
source=(http://downloads.sourceforge.net/gyachi/gyachi-$pkgver.tar.gz)
|
|
md5sums=('4152449c9cd68807effcfef509a3563e')
|
|
|
|
build() {
|
|
cd "$srcdir/gyachi-$pkgver"
|
|
./autogen.sh || return 1
|
|
./configure --prefix=/usr --libexecdir=/usr/lib \
|
|
--disable-rpath \
|
|
--disable-wine \
|
|
--disable-gtktest \
|
|
--disable-glibtest \
|
|
--with-x || return 1
|
|
make || return 1
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
#icon
|
|
install -Dm644 $pkgdir/usr/share/gyachi/themes/gyachi-classic/gyach-icon_48.png \
|
|
$pkgdir/usr/share/pixmaps/$pkgname.png
|
|
}
|