aboutsummaryrefslogtreecommitdiffstats
path: root/test/repo2/test-a/APKBUILD
blob: cafc43f58033d899d4c60548d4088a0c2159ed9f (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
29
30
31
32
33
34
# Contributor: 
# Maintainer: 
pkgname=test-a
pkgver=1.1
pkgrel=0
pkgdesc="Package A for apk-tools testsuite"
url="http://alpinelinux.org"
arch="noarch"
license="GPL"
depends=
makedepends=
install=
subpackages=
source=""
builddir="$srcdir/$pkgname-$pkgver"

prepare() {
	mkdir -p "$builddir"
}

build() {
	cd "$builddir"
	cat > $pkgname <<-EOF
		#!/bin/sh
		echo "hello from $pkgname-$pkgver"
	EOF
}

package() {
	cd "$builddir"
	install -Dm755 $pkgname "$pkgdir"/usr/bin/$pkgname
}

sha512sums="" #generate with 'abuild checksum'