summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: c87a9709c472ebc12f49aba1064cd028a8a4c2c1 (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
# Maintainer: weilinfox <caiweilin at iscas.ac.cn>

pkgname=autopkgtest
pkgver=5.30
pkgrel=2
pkgdesc="automatic as-installed testing for Debian packages"
arch=('any')
url="https://salsa.debian.org/ci-team/autopkgtest"
license=('GPL')
depends=('fakeroot' 'procps-ng' 'python3' 'python-pycodestyle' 'python-pyflakes' 'python-debian' 'python-docutils' 'python-mock')
provides=('autopkgtest')
conflicts=('autopkgtest')
source=("https://salsa.debian.org/ci-team/autopkgtest/-/archive/debian/5.30/autopkgtest-debian-5.30.tar.gz")
sha256sums=("8ba700c2d6eb946522b1b4138e2c3f9e07e6332e426d74a3bc46444eacafed6c")

prepare() {
	cd "$pkgname-debian-$pkgver"
}

build() {
	cd "$pkgname-debian-$pkgver"
	make all
}

package() {
	cd "$pkgname-debian-$pkgver"
	make DESTDIR="$pkgdir/" install
}