mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 18:04:38 +08:00
31 lines
825 B
Bash
31 lines
825 B
Bash
# Platform Packages for Chakra, part of chakra-project.org
|
|
|
|
pkgname=pango
|
|
pkgver=1.36.3
|
|
pkgrel=2
|
|
pkgdesc="A library for layout and rendering of text"
|
|
arch=('x86_64')
|
|
license=('LGPL')
|
|
depends=('cairo' 'libxft' 'libthai' 'harfbuzz')
|
|
makedepends=('gobject-introspection' 'libxt' 'fontconfig')
|
|
install=pango.install
|
|
source=("http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz")
|
|
url="http://www.pango.org/"
|
|
sha256sums=('ad48e32917f94aa9d507486d44366e59355fcfd46ef86d119ddcba566ada5d22')
|
|
|
|
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"
|
|
}
|