mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 19:44:38 +08:00
32 lines
846 B
Bash
32 lines
846 B
Bash
# Platform Packages for Chakra, part of chakra-project.org
|
|
|
|
pkgname=pango
|
|
pkgver=1.35.3
|
|
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')
|
|
install=pango.install
|
|
source=("http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz")
|
|
url="http://www.pango.org/"
|
|
sha256sums=('82c9f0d047714f2aaf0284bbc55c2a76d9d11ee309036c35c7377b0daad6d3bf')
|
|
|
|
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
|
|
install -m755 -d "${pkgdir}/etc/pango"
|
|
}
|