mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-03-07 06:32:29 +01:00
- Fix license - Fix indent on line 26 - Add check support but keep it disabled due to dependencies being in testing/
48 lines
1.2 KiB
Plaintext
48 lines
1.2 KiB
Plaintext
# Contributor: Leo <thinkabit.ukim@gmail.com>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=subunit
|
|
pkgver=1.2.0
|
|
pkgrel=1
|
|
pkgdesc="A streaming protocol for test results"
|
|
options="!check" # Dependencies for checking stuff are in testing/
|
|
url="https://launchpad.net/subunit"
|
|
arch="all"
|
|
license="Apache-2.0 BSD-3-Clause"
|
|
depends="python2"
|
|
makedepends="check-dev cppunit-dev perl-dev python2-dev"
|
|
#checkdepends="py-testtools py-fixtures py-hypothesis py-testscenarios bash"
|
|
subpackages="$pkgname-dev $pkgname-libs"
|
|
source="https://launchpad.net/subunit/trunk/${pkgver%.[0-9]}/+download/subunit-$pkgver.tar.gz"
|
|
builddir="$srcdir"/subunit-$pkgver
|
|
|
|
prepare() {
|
|
cd "$builddir"
|
|
update_config_sub
|
|
}
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info \
|
|
--localstatedir=/var
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd "$builddir"
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="$pkgdir" install
|
|
find "$pkgdir" \( -name perllocal.pod -o -name .packlist \) -delete
|
|
}
|
|
|
|
sha512sums="f6559fd771ad0732985230d11a9a8326ef35c817b62d1f50dc332f0032f7b08559a46d2534983b7d3964e45682ac49b3e348581ee0983861390abcd4ec20459c subunit-1.2.0.tar.gz"
|