blob: 06109faa9d537fe5045dd4cabf34f8dee0d6f7fd (
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
|
pkgname=p7gui
pkgver=0.0.2
pkgrel=1
pkgdesc="A GUI for p7."
arch=("x86_32" "x86_64")
url="https://github.com/intelligide/p7gui"
license=('LGPL3')
groups=()
depends=('qt5-base' 'libp7>=3.0')
makedepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
source=('https://github.com/intelligide/p7gui/archive/0.0.2.tar.gz')
noextract=()
md5sums=('SKIP')
build() {
cd "$srcdir/p7gui-$pkgver"
qmake p7gui.pro
make
}
package() {
cd "$srcdir/p7gui-$pkgver"
make INSTALL_ROOT="$pkgdir" install
}
|