mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 19:37:13 +08:00
30 lines
719 B
Bash
30 lines
719 B
Bash
# Arch contributor: https://projects.archlinux.org/svntogit/packages.git/plain/trunk/PKGBUILD?h=packages/libtiger
|
|
|
|
pkgname=libtiger
|
|
pkgver=0.3.4
|
|
pkgrel=1
|
|
pkgdesc="A rendering library for Kate streams using Pango and Cairo"
|
|
url="http://libtiger.googlecode.com/"
|
|
license=('LGPL')
|
|
arch=('i686' 'x86_64')
|
|
depends=('pango' 'libkate')
|
|
makedepends=('pkg-config')
|
|
source=("http://libtiger.googlecode.com/files/${pkgname}-${pkgver}.tar.gz")
|
|
md5sums=("dc1dbeb658c95485ba10b9b2897b4ae2")
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
./configure --prefix=/usr \
|
|
--enable-static=no \
|
|
--disable-doc
|
|
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|