From f0972b33c06b79f907d86fdbe10585042279d321 Mon Sep 17 00:00:00 2001 From: Leo Date: Mon, 24 Feb 2020 18:44:11 -0300 Subject: [PATCH] community/xev: modernize --- community/xev/APKBUILD | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/community/xev/APKBUILD b/community/xev/APKBUILD index 4b8f90d6804..d23afbbde14 100644 --- a/community/xev/APKBUILD +++ b/community/xev/APKBUILD @@ -8,13 +8,9 @@ arch="all" license="MIT" subpackages="$pkgname-doc" makedepends="libx11-dev libxrandr-dev" -depends= -source="https://www.x.org/releases/individual/app/$pkgname-$pkgver.tar.bz2" - -builddir="$srcdir/$pkgname-$pkgver" +source="https://www.x.org/releases/individual/app/xev-$pkgver.tar.bz2" build() { - cd "$builddir" ./configure \ --build=$CBUILD \ --host=$CHOST \ @@ -24,7 +20,6 @@ build() { } package() { - cd "$builddir" make DESTDIR="$pkgdir" install }