From 118beba27b02c32867b473094056f36603974282 Mon Sep 17 00:00:00 2001 From: ptrcnull Date: Tue, 10 Oct 2023 18:21:08 +0200 Subject: [PATCH] bsdtar-ponyfill: new ptrcport --- bsdtar-ponyfill/APKBUILD | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 bsdtar-ponyfill/APKBUILD diff --git a/bsdtar-ponyfill/APKBUILD b/bsdtar-ponyfill/APKBUILD new file mode 100644 index 0000000..9c63e42 --- /dev/null +++ b/bsdtar-ponyfill/APKBUILD @@ -0,0 +1,20 @@ +# Contributor: Patrycja Rosa +# Maintainer: Patrycja Rosa +pkgname=bsdtar-ponyfill +pkgver=1 +pkgrel=0 +pkgdesc="symlink to bsdtar in /bin/tar" +url="https://git.ptrc.gay/ptrcnull/ptrcports" +arch="noarch" +license="Unlicense" +depends="cmd:bsdtar" +options="!check" # is symlink + +replaces="tar" +provides="tar" + +package() { + mkdir -p "$pkgdir"/bin + ln -svf /usr/bin/bsdtar "$pkgdir"/bin/tar +} +