blob: 3abc392a4c3be774f2dbc761978da214b5c75eaa (
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
|
# Maintainer: Antoni Przybylik <antoni.przybylik@wp.pl>
pkgname=kyua
pkgver=0.13
pkgrel=1
pkgdesc="Collection of libraries and tools to implement and run automated tests"
arch=('x86_64')
url="https://github.com/jmmv/kyua"
license=('BSD')
depends=('lua' 'sqlite' 'lutok=0.4')
makedepends=('doxygen' 'gawk')
source=('https://github.com/jmmv/kyua/releases/download/kyua-0.13/kyua-0.13.tar.gz')
sha1sums=('2e437ffdb96dfc6325e283e531a1a3e11bebe4d7')
build()
{
cd "$srcdir/${pkgname}-${pkgver}" || exit
echo $PWD
./configure --prefix=/usr/
make
}
package()
{
cd "$srcdir/${pkgname}-${pkgver}" || exit
make DESTDIR="$pkgdir" install
}
|