diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-12-20 23:59:43 +0000 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-12-20 23:59:43 +0000 |
commit | c6e4237951b3670dc3cf0afd9ddd406d5b1ef792 (patch) | |
tree | 553f93fc7657568f8a723abbcfff2a63a55b329b /system/atf/APKBUILD | |
parent | 51befc595835b6c213d5322b6746fbf68b552ad3 (diff) | |
download | packages-c6e4237951b3670dc3cf0afd9ddd406d5b1ef792.tar.gz packages-c6e4237951b3670dc3cf0afd9ddd406d5b1ef792.tar.bz2 packages-c6e4237951b3670dc3cf0afd9ddd406d5b1ef792.tar.xz packages-c6e4237951b3670dc3cf0afd9ddd406d5b1ef792.zip |
system/a*: modernise, fix descriptions
Diffstat (limited to 'system/atf/APKBUILD')
-rw-r--r-- | system/atf/APKBUILD | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/system/atf/APKBUILD b/system/atf/APKBUILD index 5b4f82a92..1c8fc1a64 100644 --- a/system/atf/APKBUILD +++ b/system/atf/APKBUILD @@ -2,7 +2,7 @@ pkgname=atf pkgver=0.21 pkgrel=1 -pkgdesc="libraries to write tests in C, C++ and shell" +pkgdesc="Automated Testing Framework" url="https://github.com/jmmv/atf" arch="all" license="BSD-2-Clause AND BSD-3-Clause" @@ -13,7 +13,6 @@ source="https://github.com/jmmv/atf/releases/download/atf-$pkgver/atf-$pkgver.ta builddir="$srcdir/atf-$pkgver" build() { - cd "$builddir" ./configure \ --build=$CBUILD \ --host=$CHOST \ @@ -25,12 +24,10 @@ build() { } check() { - cd "$builddir" make check } package() { - cd "$builddir" make DESTDIR="$pkgdir" install } |