blob: a0db4c8f0acbe96e658fc11e8b32adc00559bdf3 (
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
|
# Maintainer: Carlos Aznarán <caznaranl@uni.pe>
# Contributor: Pavel Merzlyakov <pavel.merzlyakov@gmail.com>
_base=allure
pkgname=${_base}-commandline
pkgver=2.33.0
pkgrel=1
pkgdesc="A flexible, lightweight multi-language test reporting tool"
arch=(i686 x86_64)
license=(Apache-2.0)
url="https://github.com/${_base}-framework/${_base}2"
depends=(jdk17-openjdk bash)
source=(${url}/releases/download/${pkgver}/${_base}-${pkgver}.tgz
${_base})
sha512sums=('3c59853cedcc2be7eb76992dccaaa660228515e83d8d7a0757c2bc4baaa11a82c49211d860fdb747a71044f104e32ab6106766a97d0fa3850a97627744cd3a72'
'd1c50028f8ba9d791d113314cec71c5174a69e1e9136c1d22bfb58e844d20f7c15c1917184e827bbdfbd25ffd7a0fc5259004e57da331f54948f25e310927ad5')
package() {
install -Dm755 ${_base} "${pkgdir}/usr/bin/${_base}"
installdir="${pkgdir}/opt/${pkgname}"
mkdir -p "${installdir}"
for dir in bin config lib plugins; do
cp -r "./${_base}-${pkgver}/${dir}" "${installdir}/"
done
}
|