blob: 6af121a38ffb7f9493de630cfeabd16d6507731c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Maintainer: Brendan Szymanski <bscubed@pm.me>
pkgname=devtest
pkgver=1.0.4
pkgrel=1
pkgdesc="A tool for AUR package maintainers to easily manage and test multiple packages"
arch=('any')
url="https://github.com/bscubed/devtest"
license=('GPL3')
depends=('devtools')
makedepends=('git')
optdepends=('ccache: For ccache integration')
source=("git+https://github.com/bscubed/devtest.git#tag=v${pkgver}")
md5sums=('SKIP')
package() {
cd "$srcdir/$pkgname"
make PREFIX=usr DESTDIR="$pkgdir" install
}
|