about summary refs log tree commit diff
path: root/xrecent
diff options
context:
space:
mode:
authorChristian Neukirchen <chneukirchen@gmail.com>2016-09-26 18:48:38 +0200
committerChristian Neukirchen <chneukirchen@gmail.com>2016-09-26 18:48:38 +0200
commit64a9fcf3039d8f4ac35a36e117319e0097c9012f (patch)
treec4d882ac58ce2fa560c96a71d987d0a33c87c7d2 /xrecent
parent733f4712b6a8cc812d4be5a7d3e2b1372b96700a (diff)
downloadxtools-64a9fcf3039d8f4ac35a36e117319e0097c9012f.tar.gz
xtools-64a9fcf3039d8f4ac35a36e117319e0097c9012f.tar.xz
xtools-64a9fcf3039d8f4ac35a36e117319e0097c9012f.zip
xrecent: learn about aarch64
Diffstat (limited to 'xrecent')
-rwxr-xr-xxrecent5
1 files changed, 5 insertions, 0 deletions
diff --git a/xrecent b/xrecent
index 9f7c798..e94021a 100755
--- a/xrecent
+++ b/xrecent
@@ -2,6 +2,8 @@
 # xrecent [REPOURL|XBPS_ARCH] - list packages in repo ordered by build date
 
 case "$(xbps-uhelper arch)" in
+	aarch64*)
+		repo=https://repo.voidlinux.eu/current/aarch64/;;
 	*-musl)
 		repo=https://repo.voidlinux.eu/current/musl/;;
 	*)
@@ -11,6 +13,9 @@ esac
 case "$1" in
 */*)
 	repo=$1;;
+aarch64*)
+	repo=https://repo.voidlinux.eu/current/aarch64/
+	export "XBPS_TARGET_ARCH=$1";;
 *-musl)	
 	repo=https://repo.voidlinux.eu/current/musl/
 	export "XBPS_TARGET_ARCH=$1";;