void-packages

Void Source Packages
git clone git://ezup.dev/void-packages.git
Log | Files | Refs | README | LICENSE

commit f24e3e9c3336639a3a2057451da9eb9eb90f0377
parent f8f6863ff690950a6409a7f942057c0211092117
Author: Dash Eclipse <dash@ezup.dev>
Date:   Sat, 18 Jul 2020 23:17:14 +0000

Update ezup/

Diffstat:
Mezup/build-pkg.sh | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/ezup/build-pkg.sh b/ezup/build-pkg.sh @@ -1,10 +1,15 @@ #!/bin/sh for pkg in "$@"; do + echo "\n\n## Cleaning...\n" + ./xbps-src clean + echo "\n\n## Building $pkg (x86_64-musl)...\n" ./xbps-src -r musl pkg $pkg + echo "\n\n## Building $pkg (armv7l-musl)...\n" ./xbps-src -a armv7l-musl -r musl pkg $pkg + echo "\n\n## Building $pkg (aarch64)...\n" ./xbps-src -a aarch64-musl -r aarch64 pkg $pkg done