diff options
author | Leo <thinkabit.ukim@gmail.com> | 2020-02-24 18:56:02 -0300 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2020-02-24 23:29:30 -0300 |
commit | 2378bf55b12dcabbfbf851f913f944a94e072975 (patch) | |
tree | 8222c225638fcb2576ca8b29be7d832b591df9ba | |
parent | 198d9417a8ef7f90a8ef03a172abf451d0993b5c (diff) | |
download | aports-2378bf55b12dcabbfbf851f913f944a94e072975.tar.gz aports-2378bf55b12dcabbfbf851f913f944a94e072975.tar.bz2 aports-2378bf55b12dcabbfbf851f913f944a94e072975.tar.xz |
community/iceauth: modernize
-rw-r--r-- | community/iceauth/APKBUILD | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/community/iceauth/APKBUILD b/community/iceauth/APKBUILD index dfd2d8b0e3e..59e40ee7066 100644 --- a/community/iceauth/APKBUILD +++ b/community/iceauth/APKBUILD @@ -7,19 +7,14 @@ url="http://xorg.freedesktop.org" arch="all" license="MIT" subpackages="$pkgname-doc" -depends="" makedepends="libice-dev util-macros" source="https://www.x.org/releases/individual/app/iceauth-$pkgver.tar.bz2" -builddir="$srcdir/$pkgname-$pkgver" - check() { - cd "$builddir" make check } build() { - cd "$builddir" ./configure \ --build=$CBUILD \ --host=$CHOST \ @@ -29,7 +24,6 @@ build() { } package() { - cd "$builddir" make DESTDIR="$pkgdir" install } |