You are not logged in.
What is it? pacman yielded no clue so far; it acts as if there were no such thing. Meanwhile both Ark and Krusader refuse to build a rar archive.
Last edited by Llama (2008-11-08 18:38:36)
Offline
pacman -S unrar
it's in the [extra] repo
Have you Syued today?
Free music for free people! | Earthlings
"Perfection is achieved, not when there is nothing more to add, but when there is nothing left to take away." -- A. de Saint-Exupery
Offline
unrar's in place. Reinstalled it; no difference.
Offline
I believe unrar is for, well, unrarring only.
If you want to make RARs you'll have to get rar itself.
It doesn't seem to be in AUR anymore, but Google cache still has it.
Last edited by semdornus (2008-04-24 08:21:45)
Offline
Unrar, like it's name implies, only extracts rar files. The rar file is a proprietary format, owned by RarLab, they charge for the utility to create the archives.
Here is the PKGBUILD for the shareware version of rar:
# Contributor: Vinay S Shastry <vinayshastry@gmail.com>
pkgname=rar
pkgver=3.7.1
pkgrel=3
pkgdesc="The RAR compression program"
arch=('i686')
url="http://rarlab.com/"
[ "$CARCH" = "i686" ] && depends=('gcc-libs')
[ "$CARCH" = "x86_64" ] && depends=('lib32-gcc-libs')
source=(http://www.rarlab.com/rar/rarlinux-$pkgver.tar.gz)
md5sums=('b52249002e279a3e97afc25b5758ec7c')
license=('custom')
options=(docs !strip)
conflicts=('unrar')
provides=('unrar')
build() {
cd $startdir/src/rar
mkdir -p $startdir/pkg/{usr/bin,/usr/lib,etc}
install -m 755 rar $startdir/pkg/usr/bin
install -m 755 unrar $startdir/pkg/usr/bin
install -m 644 rarfiles.lst $startdir/pkg/etc
install -m 755 default.sfx $startdir/pkg/usr/lib
# License
mkdir -p $startdir/pkg/usr/share/licenses/$pkgname
install -m644 license.txt $startdir/pkg/usr/share/licenses/$pkgname/
# Manual
mkdir -p $startdir/pkg/usr/share/doc/rar
install -m644 rar.txt readme.txt whatsnew.txt technote.txt $startdir/pkg/usr/share/doc/rar
}
Last edited by elliott (2008-04-24 08:26:27)
Offline
Ah, sorry, I misunderstood.
Have you Syued today?
Free music for free people! | Earthlings
"Perfection is achieved, not when there is nothing more to add, but when there is nothing left to take away." -- A. de Saint-Exupery
Offline
I can't really understand that. If it's not free of charge, installing it without a payment is a theft, PKGBUILD, pkg.tar.gz of whatever. If it's free of charge, a loose PKGBUILD is a joke in a bad taste. After all, I can play mp3, use nvidia drivers, all with no strings attached within the same distribution, can I not?
Offline
RAR is shareware. That is, it's freely distributed, but the author requests payment for its use after a trial period.
Offline
Llama, mp3s are patent-burdened (not available as standard in many distros), and Nvidia do not (and probably cannot, without being sued themselves) release their sourcecode - and again, not available as standard.
Anyway, the bottom line is, use e.g. .tar.bz2 to compress files, instead of rar
Last edited by brebs (2008-04-24 18:42:25)
Offline
Anyway, the bottom line is, use e.g. .tar.bz2 to compress files, instead of rar
Or p7zip.
Offline
rar is in archlinuxfr repository
Add to /etc/pacman.conf:
[archlinuxfr]
Server = http://repo.archlinux.fr/i686
or
[archlinuxfr]
Server = http://repo.archlinux.fr/x86_64
There's a lot more there, like a packaged virtualbox, yaourt, etc.
Last edited by Llama (2008-11-08 18:39:50)
Offline