mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 08:57:59 +08:00
31 lines
812 B
Bash
31 lines
812 B
Bash
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas@chakra-project.org
|
|
|
|
pkgname=pango
|
|
pkgver=1.32.5
|
|
pkgrel=1
|
|
pkgdesc="A library for layout and rendering of text"
|
|
arch=('x86_64')
|
|
license=('LGPL')
|
|
depends=('cairo' 'libxft' 'libthai' 'harfbuzz')
|
|
makedepends=('gobject-introspection' 'libxt' 'fontconfig')
|
|
options=('!libtool' '!emptydirs')
|
|
install=pango.install
|
|
source=("http://ftp.gnome.org/pub/gnome/sources/${pkgname}/1.32/${pkgname}-${pkgver}.tar.xz")
|
|
url="http://www.pango.org/"
|
|
md5sums=('8e846804d6e219bc795a26a4a39b5bfd')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
./configure --prefix=/usr --sysconfdir=/etc \
|
|
--localstatedir=/var --with-included-modules=basic-fc
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|