blob: db9f3d7c792e45fe58321caad0815cc779d18820 (
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
|
# Maintainer: Yuexuan Gu <lastavengers@outlook.com>
pkgname=srain-git
pkgver=0.140.c6812d1
pkgrel=2
pkgdesc="it does not look like a irc client"
arch=('i686' 'x86_64')
license=('GPL')
url="https://github.com/LastAvenger/srain"
depends=('gtk3' 'glib2' 'python')
makedepends=('git' 'make' 'gcc' 'pkg-config' 'gettext' 'curl')
conflicts=('srain')
provides=('srain')
source=("git+https://github.com/LastAvenger/srain.git")
sha256sums=('SKIP')
pkgver() {
cd ${pkgname%-git}
echo "0.$(git rev-list --count HEAD).$(git describe --always)"
}
build() {
cd ${pkgname%-git}
make init
make DESTDIR=/usr
}
package() {
cd ${pkgname%-git}
make DESTDIR=$pkgdir/usr install
}
|