mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
6 lines
122 B
Bash
6 lines
122 B
Bash
#!/bin/sh
|
|
if [ "$1" = "" -o ! -e "$1" ]; then
|
|
echo "no package supplied" 1>&2
|
|
exit 1
|
|
fi
|
|
rpm2cpio $1 | bsdtar -xf -
|