blob: e86f796b0008c2251dfc5c6471574ec1102be097 (
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
|
# Contributor (Arch): Eugenio M. Vigo <emvigo@gmail.com>
# Contributor (Arch): speps <speps dot aur dot archlinux dot org>
# Maintainer: Omar Vega Ramos <ovruni@gnu.org.pe>
pkgname=pumpa
pkgver=0.9.2
pkgrel=1
pkgdesc="simple pump.io client written in C++ and Qt"
arch=('i686' 'x86_64' 'armv7h')
url="http://pumpa.branchable.com"
license=('GPL3')
depends=('qt5-base' 'aspell' 'hicolor-icon-theme' 'tidy' 'desktop-file-utils')
makedepends=('git')
source=(${pkgname}-${pkgver}::git://pumpa.branchable.com/#tag=v${pkgver})
sha256sums=('SKIP')
build() {
cd $pkgname-$pkgver
qmake PREFIX=/usr
make
}
package() {
cd $pkgname-$pkgver
make INSTALL_ROOT="$pkgdir/" install
}
|