blob: 2f59fde64bf89e9c34005df75d9af5a53fb52755 (
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
|
# Maintainer: Ben Iofel <iofelben@gmail.com>
pkgname=vaccine-git
pkgver=0.0.1
pkgrel=1
pkgdesc="A GTK+3 4chan client for the linux desktop"
arch=('any')
url="https://github.com/VaccineApp/vaccine"
license=('GPL3')
depends=('gtk3' 'libsoup' 'json-glib')
makedepends=('git' 'autoconf' 'automake' 'pkg-config' 'autoconf-archive' 'vala')
source=('vaccine::git+https://github.com/VaccineApp/vaccine.git')
sha256sums=('SKIP')
build() {
cd "$srcdir/vaccine"
./autogen.sh --prefix=/usr --disable-debug
make
}
package() {
cd vaccine
make DESTDIR="$pkgdir/" install
}
|