mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 20:54:42 +08:00
will commit them separately next time... it's just too much work to do separate commits right now
32 lines
847 B
Bash
32 lines
847 B
Bash
# Platform Packages for Chakra, part of chakra-project.org
|
|
|
|
pkgname=pango
|
|
pkgver=1.35.0
|
|
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=('c21f7277b5c088f334748b38f2c3abd6399024d653ab7663f567234acbdc7f92')
|
|
|
|
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"
|
|
}
|