summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 691e238610546ebe37d4a8f21b337a93b0b9c30e (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
# Contributor: Giuseppe CalĂ  <jiveaxe@gmail.com>

pkgname=steamcompanion
pkgver=0.5.4
pkgrel=1
pkgdesc="A plasmoid to track Steam's specials and deals."
arch=('i686' 'x86_64')
url=(http://kde-apps.org/content/show.php/Steam+Companion?content=141713)
license=('GPL')
depends=('kdebase-workspace')
makedepends=('automoc4' 'cmake')
source=('http://opendesktop.org/CONTENT/content-files/141713-steamcompanion.tar.gz')
md5sums=('8356e0a5f9fbe4a7bdf5e8340687b309')

build() {
  cd ${srcdir}/${pkgname}

  mkdir build
  cd build
  cmake ../ -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix` || return 1
  make || return 1
}

package() {
  cd ${srcdir}/${pkgname}/build

  make DESTDIR=$pkgdir install || return 1
}