summaryrefslogtreecommitdiffstats
path: root/arch/PKGBUILD.template
blob: 0b84ae9d95a872810e9d6f2d3f5022fda3595ee0 (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
48
49
50
51
52
53
54
55
56
57
58
59
# Maintainer: Michael Manley <mmanley@nasutek.com>
# Contributor: David C. Rankin <drankinatty at gmail dot com>

_mod=tdepowersave
_cat=applications/
_kdemod="${_mod/tde/kde}"
pkgname="tde-$_mod"
pkgver=14.0.5
pkgrel=1
pkgdesc="Trinity Desktop Enviroment $_cat$_mod"
arch=('i686' 'x86_64')
url="http://scm.trinitydesktop.org/scm/git/$_mod"
license=('GPL')
provides=("$_mod")
groups=('tde-complete')
depends=(
  'tde-tdelibs'
)
makedepends=(
  'autoconf'
  'cmake'
  'pkgconfig'
)
optdepends=()
confilicts=("trinity-$_kdemod" "kdemod3-$_kdemod")
replaces=("trinity-$_mod")
options=('staticlibs' 'libtool' '!strip')
install=

source=("http://mirror.ppa.trinitydesktop.org/trinity/releases/R$pkgver/$_cat$_mod-R$pkgver.tar.bz2")

build() {
  cd "${srcdir}/${_cat}${_mod}"

  msg "Setting PATH, CMAKE and Trinity Environment variables"
  # Source the QT and TDE profile
  [ "$QTDIR" = "" ] && . /etc/profile.d/tqt3.sh
  [ "$TDEDIR" = "" ] && . /etc/profile.d/trinity.sh

  msg "Creating out-of-source build directory: ${srcdir}/build"
  mkdir -p "$srcdir/build"
  cd "$srcdir/build"

  msg "Starting cmake..."

  cmake ${srcdir}/${_cat}${_mod} \
    -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"
  make -j1 DESTDIR="$pkgdir" install
}