mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 17:44:36 +08:00
24 lines
704 B
Bash
24 lines
704 B
Bash
|
# $Id: PKGBUILD 5595 2008-07-18 21:58:26Z jgc $
|
||
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
||
|
|
||
|
pkgname=pangomm
|
||
|
pkgver=2.26.0
|
||
|
pkgrel=1
|
||
|
pkgdesc="C++ bindings for pango"
|
||
|
arch=(i686 x86_64)
|
||
|
license=('LGPL')
|
||
|
depends=('pango>=1.25.5' 'glibmm>=2.21.5' 'cairomm>=1.8.2')
|
||
|
makedepends=('pkgconfig')
|
||
|
source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/2.26/${pkgname}-${pkgver}.tar.bz2)
|
||
|
conflicts=('gtkmm<2.13.0')
|
||
|
options=('!libtool')
|
||
|
url="http://gtkmm.sourceforge.net/"
|
||
|
sha256sums=('bf26ebe42c12c81e5c32ceca80ff226a01c8d80d4db2a4cc3463d5bf241b095e')
|
||
|
|
||
|
build() {
|
||
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
||
|
./configure --prefix=/usr || return 1
|
||
|
make || return 1
|
||
|
make DESTDIR="${pkgdir}" install || return 1
|
||
|
}
|