blob: c16ef0f97122878ab15a8c237730feda34d61cb2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# Maintainer: Michael Manley <[email protected]>
# Contributor: David C. Rankin <drankinatty at gmail dot com>
pkgname=tde-gtk-qt-engine
pkgver=14.0.5
pkgrel=1
pkgdesc="gtk qt engine"
arch=('i686' 'x86_64')
url='http://scm.trinitydesktop.org/scm/git/applications/gtk-qt-engine'
license=('GPL')
groups=('tde-extra')
depends=('tde-tdebase')
makedepends=('pkgconfig' 'cmake')
#provides=('gtk-qt-engine')
#conflicts=('gtk-qt-engine')
#replaces=('gtk-qt-engine')
options=('staticlibs' 'libtool' '!strip')
source=("http://mirror.ppa.trinitydesktop.org/trinity/releases/R${pkgver}/applications/gtk-qt-engine-R${pkgver}.tar.bz2")
md5sums=('31777d53a3b6e79e416306427e908a89')
# install=''
build() {
## Generate config files and update with autoreconf
cd ${srcdir}/applications/${pkgname#*-}
msg "Creating out-of-source build directory: ${srcdir}/build"
mkdir -p "$srcdir/build"
cd "$srcdir/build"
msg "Starting cmake..."
cmake ${srcdir}/applications/${pkgname#*-} \
-DCMAKE_INSTALL_PREFIX=${TDEDIR} \
-DSYSCONF_INSTALL_DIR=${TDEDIR}/etc \
-DBUILD_ALL=ON \
-DWITH_GCC_VISIBILITY=ON
make $NUMJOBS
}
package() {
msg "Packaging - $pkgname-$pkgver"
cd ${srcdir}/build # use for libtool
make -j1 DESTDIR="${pkgdir}" install
}
|