Fixed the quotes in source URL, used doxygen

This commit is contained in:
Nazar Mishturak
2015-09-13 19:22:03 +03:00
parent 7bb8c13311
commit 02823800fb

View File

@@ -5,7 +5,7 @@ _realname=glbinding
pkgbase="mingw-w64-${_realname}"
pkgname="${MINGW_PACKAGE_PREFIX}-${_realname}"
pkgver=1.1.0
pkgrel=1
pkgrel=2
arch=('any')
url='https://github.com/cginternals/glbinding'
pkgdesc='A C++ binding for the OpenGL API, generated using the gl.xml specification (mingw-w64)'
@@ -17,7 +17,8 @@ makedepends=("${MINGW_PACKAGE_PREFIX}-gcc"
"${MINGW_PACKAGE_PREFIX}-python2")
license=('MIT')
options=('strip' 'staticlibs' 'docs')
source=(${_realname}-${pkgver}.tar.gz::'https://github.com/cginternals/glbinding/archive/v${pkgver}.tar.gz'
source=(${_realname}-${pkgver}.tar.gz::"https://github.com/cginternals/glbinding/archive/v${pkgver}.tar.gz"
'werror-conversion.patch'
'mingw-unix-layout.patch')
md5sums=('fe6517dc1aa5f81d56ee060073da0f44'
@@ -71,11 +72,13 @@ build() {
-DCMAKE_CXX_COMPILER=${MINGW_CHOST}-g++ \
-DOPTION_BUILD_EXAMPLES=OFF \
-DOPTION_BUILD_TESTS=OFF \
-DOPTION_BUILD_TOOLS=ON \
-DOPTION_BUILD_TOOLS=OFF \
-DOPTION_BUILD_STATIC=OFF \
../${_realname}-${pkgver}
make
# Build the docs once
make docs
}
package () {
@@ -84,4 +87,5 @@ package () {
cd "${srcdir}/shared-${MINGW_CHOST}"
make DESTDIR=${pkgdir} install
make DESTDIR=${pkgdir} docs-doxygen
}