blob: 4e1f54443a0daff0e62b6c16c316225f75e611bb (
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
33
34
35
36
|
# Maintainer: Damien Guihal <dguihal@gmail.com>
# Do not forget SRCINFO : makepkg --printsrcinfo > .SRCINFO
pkgname=quteqoin-git
pkgver=r684.f992910
pkgrel=1
pkgdesc="Tool based on Qt framework to allow effective mouling on bouchots."
arch=('i686' 'x86_64')
url="https://github.com/dguihal/quteqoin"
license=('GPL')
depends=('qt5-base' 'qt5-multimedia')
makedepends=('git')
provides=('quteqoin')
source=('quteqoin::git+https://github.com/dguihal/quteqoin.git')
sha1sums=('SKIP')
pkgver() {
cd "quteqoin"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build() {
cd "quteqoin"
#
# BUILD HERE
#
qmake-qt5 PREFIX=/usr
make
}
package() {
cd "quteqoin"
make INSTALL_ROOT="$pkgdir" install
}
# vim:set ts=2 sw=2 et:
|