summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 7d8841547763eda995a40a3fa8c84f8835d3fad3 (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
# Maintainer: jjacky
_pkgname=weeplugins
pkgname=$_pkgname-git
pkgver=0.1.1
pkgrel=1
pkgdesc="WeeChat plugins: NickServ handling, trigger commands on messages, command to send text/command to specific buffer"
arch=('i686' 'x86_64')
url="https://github.com/jjk-jacky/weeplugins"
license=('GPL3+')
depends=('weechat')
makedepends=('git')
source=("git+https://github.com/jjk-jacky/${_pkgname}.git")
md5sums=('SKIP')

build() {
  cd "$srcdir/$_pkgname"
  make
}

package() {
  cd "$srcdir/$_pkgname"
  make DESTDIR="$pkgdir/" install
}

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