diff options
author | Leo <thinkabit.ukim@gmail.com> | 2020-02-24 19:03:11 -0300 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2020-02-24 23:29:30 -0300 |
commit | ac3c83146d1a5f759352038139a40416a5872a9f (patch) | |
tree | 82393b4651dec01de9a1375fb4a31f135b8071d2 | |
parent | 22de55c60502db6c90cc14bc06e7b79cfce96936 (diff) | |
download | aports-ac3c83146d1a5f759352038139a40416a5872a9f.tar.gz aports-ac3c83146d1a5f759352038139a40416a5872a9f.tar.bz2 aports-ac3c83146d1a5f759352038139a40416a5872a9f.tar.xz |
community/xsetroot: modernize
-rw-r--r-- | community/xsetroot/APKBUILD | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/community/xsetroot/APKBUILD b/community/xsetroot/APKBUILD index 30e27d6d80f..4de17934c56 100644 --- a/community/xsetroot/APKBUILD +++ b/community/xsetroot/APKBUILD @@ -7,13 +7,10 @@ url="http://xorg.freedesktop.org" arch="all" license="MIT" subpackages="$pkgname-doc" -depends="" makedepends="libx11-dev libxmu-dev libxcursor-dev xbitmaps util-macros" -source="https://www.x.org/releases/individual/app/$pkgname-$pkgver.tar.bz2" -builddir="$srcdir/$pkgname-$pkgver" +source="https://www.x.org/releases/individual/app/xsetroot-$pkgver.tar.bz2" build() { - cd "$builddir" ./configure \ --build=$CBUILD \ --host=$CHOST \ @@ -29,7 +26,6 @@ check() { } package() { - cd "$builddir" make DESTDIR="$pkgdir" install } |