mirror of
https://github.com/void-linux/void-packages.git
synced 2025-10-02 00:25:11 +02:00
6 lines
122 B
Bash
Executable file
6 lines
122 B
Bash
Executable file
#!/bin/sh
|
|
if [ "$1" = "" -o ! -e "$1" ]; then
|
|
echo "no package supplied" 1>&2
|
|
exit 1
|
|
fi
|
|
rpm2cpio $1 | bsdtar -xf -
|