mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 21:57:17 +08:00
30 lines
1.0 KiB
Bash
30 lines
1.0 KiB
Bash
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=pango
|
|
pkgver=1.28.3
|
|
pkgrel=1
|
|
pkgdesc="A library for layout and rendering of text"
|
|
arch=('i686' 'x86_64')
|
|
license=('LGPL')
|
|
depends=('glib2>=2.25.15' 'cairo>=1.10.0' 'libxft>=2.1.14' 'libthai>=0.1.14' 'freetype2>=2.4.2')
|
|
makedepends=('pkgconfig' 'libxt' 'gobject-introspection')
|
|
options=('!libtool' '!emptydirs')
|
|
install=pango.install
|
|
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/1.28/${pkgname}-${pkgver}.tar.bz2)
|
|
url="http://www.pango.org/"
|
|
sha256sums=('5e278bc9430cc7bb00270f183360d262c5006b51248e8b537ea904573f200632')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --sysconfdir=/etc \
|
|
--localstatedir=/var --with-included-modules=basic-fc
|
|
make
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|