diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-05-18 20:34:59 -0300 |
---|---|---|
committer | TBK <tbk@jjtc.eu> | 2019-05-24 00:53:57 +0200 |
commit | a6d21ce34df64c4e8cf33ebf5b4dfa727b71752c (patch) | |
tree | 6264ab8f74ceebacac767f936d71451ef86b6147 | |
parent | fa8596abd382cb3a16afa8bf24fcefaf9fe3dcdb (diff) | |
download | aports-a6d21ce34df64c4e8cf33ebf5b4dfa727b71752c.tar.bz2 aports-a6d21ce34df64c4e8cf33ebf5b4dfa727b71752c.tar.xz |
testing/slop: modernize
Closes: GH-7935
-rw-r--r-- | testing/slop/APKBUILD | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/testing/slop/APKBUILD b/testing/slop/APKBUILD index 115d0f02a6..9dcaf50ce1 100644 --- a/testing/slop/APKBUILD +++ b/testing/slop/APKBUILD @@ -15,10 +15,8 @@ makedepends=" libxrender-dev" subpackages="$pkgname-dev $pkgname-doc" source="$pkgname-$pkgver.tar.gz::https://github.com/naelstrof/slop/archive/v${pkgver}.tar.gz" -builddir="$srcdir/$pkgname-$pkgver" build() { - cd "$builddir" if [ "$CBUILD" != "$CHOST" ]; then CMAKE_CROSSOPTS="-DCMAKE_SYSTEM_NAME=Linux -DCMAKE_HOST_SYSTEM_NAME=Linux" fi @@ -33,7 +31,6 @@ build() { } package() { - cd "$builddir" make DESTDIR="$pkgdir" install } |