diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-06-15 13:30:12 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-06-15 13:31:20 +0000 |
commit | 83d859286db8a184054a5e05f707953634c82604 (patch) | |
tree | d7224227db27abba7a9d21e1c2f074c0d7541f9a /test/repo2/test-a/APKBUILD | |
parent | ec6359732dec5651567f593d07871b5b7997c91d (diff) | |
download | apk-tools-83d859286db8a184054a5e05f707953634c82604.tar.gz apk-tools-83d859286db8a184054a5e05f707953634c82604.tar.bz2 apk-tools-83d859286db8a184054a5e05f707953634c82604.tar.xz apk-tools-83d859286db8a184054a5e05f707953634c82604.zip |
test: initial testsuite
Diffstat (limited to 'test/repo2/test-a/APKBUILD')
-rw-r--r-- | test/repo2/test-a/APKBUILD | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/test/repo2/test-a/APKBUILD b/test/repo2/test-a/APKBUILD new file mode 100644 index 0000000..693cf61 --- /dev/null +++ b/test/repo2/test-a/APKBUILD @@ -0,0 +1,33 @@ +# Contributor: +# Maintainer: +pkgname=test-a +pkgver=1.1 +pkgrel=0 +pkgdesc="Package A for apk-tools testsuite" +url="http://alpinelinux.org" +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 +} + +md5sums="" #generate with 'abuild checksum' |