blob: 10f8b326106428af5d79a5cd8283ed83355b0685 (
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
|
# Maintainer: Viktor Drobot (aka dviktor) linux776 [at] gmail [dot] com
pkgname=suwidgets-git
pkgver=r5.26f87aa
pkgrel=1
pkgdesc="Sigutils-related widgets"
arch=(any)
license=('custom')
url="https://github.com/BatchDrake/SuWidgets"
depends=('qt5-base')
makedepends=('git' 'gcc')
source=("$pkgname::git+https://github.com/BatchDrake/SuWidgets.git")
sha1sums=('SKIP')
pkgver() {
cd "${pkgname}"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
prepare() {
cd ${pkgname}
qmake SuWidgetsLib.pro
}
build() {
cd ${pkgname}
make
}
package() {
cd ${pkgname}
INSTALL_ROOT=${pkgdir} make install
}
|