mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 13:57:14 +08:00
27 lines
568 B
Bash
27 lines
568 B
Bash
# Neophytos Kolokotronis <tetris4@gmail.com>
|
|
|
|
pkgname=libqtgtl
|
|
pkgver=0.9.3
|
|
pkgrel=2
|
|
pkgdesc="Qt bindings to OpenGTL"
|
|
url="http://www.opengtl.org"
|
|
arch=('i686' 'x86_64')
|
|
depends=('llvm' 'opengtl' 'qt')
|
|
license=('GPL')
|
|
makedepends=('cmake')
|
|
source=(http://download.opengtl.org/libQtGTL-${pkgver}.tar.bz2)
|
|
md5sums=('1e9fd96332db22da01ab6d83568e396e')
|
|
|
|
build() {
|
|
cd $srcdir
|
|
mkdir build
|
|
cd $srcdir/build
|
|
cmake $srcdir/libQtGTL-${pkgver} -DCMAKE_INSTALL_PREFIX=/usr
|
|
make
|
|
}
|
|
package() {
|
|
cd $srcdir/build
|
|
make DESTDIR=${pkgdir} install
|
|
rm -r $srcdir/build
|
|
}
|