summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 39e4bdf1a37dd417306acc801bfd8a96f375776c (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
# Maintainer: Stefan Seering <stefanarch@gmx.de>
pkgname='teamspeak3-plugin-love-svn'
pkgver=49
pkgrel=2
pkgdesc='Plugin for Teamspeak 3. Allows follwing users through channels.'
arch=('i686' 'x86_64')
url='http://sourceforge.net/p/ts3love/home/ts3love/'
license=('unknown')
depends=('teamspeak3')
makedepends=('subversion' 'teamspeak3' 'unzip') # the teamspeak package contais C header files
source=('svn://svn.code.sf.net/p/ts3love/code/trunk')
md5sums=('SKIP')
provides=('teamspeak-plugin-love-svn')
conflicts=('teamspeak-plugin-love-svn')


build() {
  cd -- trunk
  make libtslove.so
}

package() {
  cd -- trunk
  mkdir -p -- "$pkgdir/opt/teamspeak3/plugins"
  cp -- libtslove.so "$pkgdir/opt/teamspeak3/plugins"
}

# vim:set ts=2 sw=2 et: