You are not logged in.
It takes to long to compress big aur's packages. And it is not needed at all because after the install I woun't need tha package file anymore.
Can I somehow set it to make tar archives or somehow lower the compressing level?
Last edited by Doctor Drive (2011-10-07 15:52:33)
Offline
[karol@black ~]$ tail /etc/makepkg.conf
#
# WARNING: Do NOT modify these variables unless you know what you are
# doing.
#
#PKGEXT='.pkg.tar.xz'
PKGEXT='.pkg.tar'
#PKGEXT='.pkg.tar.gz'
SRCEXT='.src.tar.gz'
# vim: set ft=sh ts=2 sw=2 et:
Offline
I would recommend setting in makepkg.conf something like this:
PKGEXT=${PKGEXT:-'.pkg.tar.xz'}
then when you don't want compression, you just
PKGEXT=.tar makepkg
And if you almost always don't want compression, you can set an alias: alias makepkg='PKGEXT=.tar makepkg' (use \makepkg to skip the alias).
Last edited by lolilolicon (2011-10-07 16:04:05)
This silver ladybug at line 28...
Offline
Thanks!
Offline