You are not logged in.
I want to make pkg.tar.gz for maya 5 rpm package, but :
]$ rpmunpack Maya5_0-5.0-18.i686.rpm
]$ gzip -d Maya5_0-5.0-18.cpio.gz
gzip: Maya5_0-5.0-18.cpio.gz: unknown method 0 -- get newer version of gzip
]$
Need help pls.
Offline
my guess is that gzip is having issues with the underscore. you may have to place forward slashes in front of and behind it.
AKA uknowme
I am not your friend
Offline
Could you give an example? I dont understand that you mean
Offline
pls, i really need help.
My pkgbuild(test):
pkgname=maya
pkgver=5.0
pkgrel=1
pkgdesc="Powerful 3d modeling software"
url="alias.com"
depends=('xfree86')
source=(Maya5_0-$pkgver-18.i686.rpm)
md5sums=()
# build-time deps: rpmunpack, cpio, gzip
build() {
cd $startdir/pkg
rpmunpack < $startdir/src/Maya5_0-$pkgver-18.i686.rpm | gzip -d | cpio -idmuv
chmod 755 -R .
}
My error:
==> Extracting Sources...
==> Removing existing pkg/ directory...
==> Starting build()...
gzip: stdin: unknown method 0 -- get newer version of gzip
cpio: premature end of archive
Offline
gzip -d Maya5_0-5.0-18.cpio.gz
notice the before the _. I don't know if that's the problem, but that's what the suggestion meant.
"Contrary to popular belief, penguins are not the salvation of modern technology. Neither do they throw parties for the urban proletariat."
Offline
It didn't help .
Offline