mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 10:57:14 +08:00
28 lines
762 B
Bash
28 lines
762 B
Bash
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas@chakra-project.org
|
|
|
|
pkgname=doxygen
|
|
pkgver=1.8.2
|
|
pkgrel=1
|
|
pkgdesc="A documentation system for C++, C, Java, IDL and PHP"
|
|
license=('GPL')
|
|
arch=('x86_64')
|
|
url="http://www.doxygen.org/"
|
|
depends=('gcc-libs' 'qt')
|
|
makedepends=('flex')
|
|
optdepends=('graphviz: for caller/callee graph generation'
|
|
'qt: for doxywizard')
|
|
source=("ftp://ftp.stack.nl/pub/users/dimitri/${pkgname}-${pkgver}.src.tar.gz")
|
|
md5sums=('6fa7baf995fa3f71cfc09e264ba88a83')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
QTDIR=/usr ./configure --prefix /usr --with-doxywizard
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
make INSTALL=${startdir}/pkg/usr MAN1DIR=share/man/man1 install
|
|
} |