mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 14:24:36 +08:00
It's not really gtk and widely used in many glib based autotools. Would be useful to build some package that need to run autogen.sh.
29 lines
749 B
Bash
29 lines
749 B
Bash
# $Id: PKGBUILD 73819 2010-03-28 19:03:45Z jgc $
|
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
|
|
pkgname=gtk-doc
|
|
pkgver=1.24
|
|
pkgrel=1
|
|
pkgdesc="Documentation tool for public library API"
|
|
arch=('any')
|
|
license=('GPL' 'FDL')
|
|
depends=('docbook-xsl' 'perl')
|
|
makedepends=('pkgconfig' 'jade' 'itstool')
|
|
optdepends=('jade: SGML support')
|
|
url="http://www.gtk.org/gtk-doc/"
|
|
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.xz)
|
|
sha256sums=('b420759ea05c760301bada14e428f1b321f5312f44e10a176d6804822dabb58b')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
export PYTHON=/usr/bin/python2
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|
|
|