diff options
Diffstat (limited to 'system')
-rw-r--r-- | system/attr/APKBUILD | 5 | ||||
-rw-r--r-- | system/coreutils/APKBUILD | 7 |
2 files changed, 8 insertions, 4 deletions
diff --git a/system/attr/APKBUILD b/system/attr/APKBUILD index 9dccb1415..1d4997a5d 100644 --- a/system/attr/APKBUILD +++ b/system/attr/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: A. Wilcox <awilfox@adelielinux.org> pkgname=attr pkgver=2.4.48 -pkgrel=0 +pkgrel=1 pkgdesc="Utilities for managing filesystem extended attributes" url="https://savannah.nongnu.org/projects/attr" arch="all" @@ -29,7 +29,8 @@ build() { --libdir=/lib \ --includedir=/usr/include \ --mandir=/usr/share/man \ - --datadir=/usr/share + --datadir=/usr/share \ + --sysconfdir=/etc make } diff --git a/system/coreutils/APKBUILD b/system/coreutils/APKBUILD index 4a70574c3..ff7df9e00 100644 --- a/system/coreutils/APKBUILD +++ b/system/coreutils/APKBUILD @@ -3,7 +3,7 @@ # Maintainer: A. Wilcox <awilfox@adelielinux.org> pkgname=coreutils pkgver=8.31 -pkgrel=3 +pkgrel=4 pkgdesc="Basic file, shell, and text manipulation utilities" url="https://www.gnu.org/software/coreutils/" arch="all" @@ -60,8 +60,11 @@ package() { # stdbuf(1) requires a /usr/libexec/ .so # env(1) needs to be in /usr/bin/ for compatibility with the rest of the world + # install(1) " " mkdir -p "$pkgdir"/usr/bin - mv "$pkgdir"/bin/stdbuf "$pkgdir"/bin/env "$pkgdir"/usr/bin/ + for USR_PROGRAM in env install stdbuf; do + mv "$pkgdir"/bin/$USR_PROGRAM "$pkgdir"/usr/bin/ + done } sha512sums="ef8941dae845bbf5ae5838bc49e44554a766302930601aada6fa594e8088f0fbad74e481ee392ff89633e68b99e4da3f761fcb5d31ee3b233d540fe2a2d4e1af coreutils-8.31.tar.xz |