rpmextract: there's no point requiring bash; the shell scripts don't have bashisms.
This commit is contained in:
parent
65bf4d6fca
commit
0e09b2dd20
|
@ -1,4 +1,4 @@
|
|||
#!/bin/bash
|
||||
#!/bin/sh
|
||||
|
||||
pkg=$1
|
||||
if [ "$pkg" = "" -o ! -e "$pkg" ]; then
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/bash
|
||||
#!/bin/sh
|
||||
if [ "$1" = "" -o ! -e "$1" ]; then
|
||||
echo "no package supplied" 1>&2
|
||||
exit 1
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
# Template file for 'rpmextract'
|
||||
pkgname=rpmextract
|
||||
version=1.0
|
||||
version=1.1
|
||||
revision=1
|
||||
short_desc="Script to convert or extract RPM archives (contains rpm2cpio)"
|
||||
maintainer="Ypnose <linuxienATlegtuxDOTorg>"
|
||||
license="GPL"
|
||||
homepage="http://www.archlinux.org"
|
||||
depends="bash bsdtar coreutils"
|
||||
depends="bsdtar coreutils"
|
||||
noarch="yes"
|
||||
|
||||
do_install() {
|
||||
|
|
Loading…
Reference in New Issue