diff options
author | Leo <thinkabit.ukim@gmail.com> | 2020-02-24 20:40:43 -0300 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2020-02-24 23:34:48 -0300 |
commit | 2b9cd0d9b8d086c976b830546823348a7b4ffe13 (patch) | |
tree | 66498630122068f7f9c01cdd6a92185bbb0c9243 | |
parent | f4dd2b0810fc607d87e8702f1e53302acc4e8263 (diff) | |
download | aports-2b9cd0d9b8d086c976b830546823348a7b4ffe13.tar.bz2 aports-2b9cd0d9b8d086c976b830546823348a7b4ffe13.tar.xz |
community/libxres: modernize
-rw-r--r-- | community/libxres/APKBUILD | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/community/libxres/APKBUILD b/community/libxres/APKBUILD index 055aeb7161..4f5b3e9aaa 100644 --- a/community/libxres/APKBUILD +++ b/community/libxres/APKBUILD @@ -10,13 +10,10 @@ options="!check" # No test suite. subpackages="$pkgname-dev $pkgname-doc" depends_dev="xorgproto" makedepends="$depends_dev libx11-dev libxext-dev util-macros" -source="https://www.x.org/releases/individual/lib/libXres-$pkgver.tar.bz2 - " - +source="https://www.x.org/releases/individual/lib/libXres-$pkgver.tar.bz2" builddir="$srcdir"/libXres-$pkgver build() { - cd "$builddir" ./configure \ --build=$CBUILD \ --host=$CHOST \ @@ -26,7 +23,6 @@ build() { } package() { - cd "$builddir" make DESTDIR="$pkgdir" install install -D -m644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/LICENSE } |