diff options
author | Ben Iofel | 2016-02-10 19:13:08 -0500 |
---|---|---|
committer | Ben Iofel | 2016-02-10 19:13:08 -0500 |
commit | d9ce50ed09aedd116b9ed7284b87306615b92172 (patch) | |
tree | de16551fb9f7ceca1f1d17edabe59a11bba8684f /PKGBUILD | |
download | aur-d9ce50ed09aedd116b9ed7284b87306615b92172.tar.gz |
Initial commit
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..2f59fde64bf8 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,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 +} |