mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-09 10:42:12 +01:00
64 lines
1.7 KiB
Plaintext
64 lines
1.7 KiB
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=pidgin
|
|
pkgver=2.10.0
|
|
pkgrel=3
|
|
pkgdesc="graphical multi-protocol instant messaging client for X"
|
|
url="http://pidgin.im/"
|
|
arch="all"
|
|
license="GPL"
|
|
depends=
|
|
makedepends="gtk+-dev intltool libsm-dev startup-notification-dev gtkspell-dev
|
|
libxml2-dev gstreamer-dev libidn-dev dbus-glib-dev gnutls-dev
|
|
cyrus-sasl-dev ncurses-dev nss-dev"
|
|
subpackages="$pkgname-dev $pkgname-doc finch libpurple $pkgname-lang"
|
|
source="http://downloads.sourceforge.net/pidgin/pidgin-$pkgver.tar.bz2"
|
|
|
|
_builddir="$srcdir"/$pkgname-$pkgver
|
|
prepare() {
|
|
cd "$_builddir"
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--disable-avahi \
|
|
--disable-doxygen \
|
|
--disable-gnutls \
|
|
--disable-meanwhile \
|
|
--disable-nm \
|
|
--disable-perl \
|
|
--disable-schemas-install \
|
|
--disable-screensaver \
|
|
--disable-tcl \
|
|
--disable-vv \
|
|
--enable-cyrus-sasl \
|
|
--enable-nss \
|
|
|| return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="$pkgdir" install
|
|
find "$pkgdir" -name '*.la' -delete
|
|
}
|
|
|
|
finch() {
|
|
pkgdesc="text-based multi-protocol instant messaging client"
|
|
mkdir -p "$subpkgdir"/usr/lib "$subpkgdir"/usr/bin
|
|
mv "$pkgdir"/usr/lib/gnt "$pkgdir"/usr/lib/libgnt.so.* \
|
|
"$pkgdir"/usr/lib/finch \
|
|
"$subpkgdir"/usr/lib/
|
|
mv "$pkgdir"/usr/bin/finch "$subpkgdir"/usr/bin/
|
|
}
|
|
|
|
libpurple() {
|
|
pkgdesc="multi-protocol instant messaging library"
|
|
mkdir -p "$subpkgdir"/usr/lib "$subpkgdir"/usr/share/sounds
|
|
mv "$pkgdir"/usr/lib/*purple* "$subpkgdir"/usr/lib/
|
|
mv "$pkgdir"/usr/share/purple "$pkgdir"/usr/share/sounds \
|
|
"$subpkgdir"/usr/share/
|
|
}
|
|
md5sums="e1453c9093c4f32beec19abd14069a3f pidgin-2.10.0.tar.bz2"
|