blob: 8dcbf145c2edc7939e48566ebf84ce0caedde549 [file] [log] [blame]
#!/usr/bin/python -O
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
import sys, os
if len(sys.argv)!=3:
print "xpak: expecting three arguments."
sys.exit(1)
try:
import xpak
except ImportError:
sys.path.insert(0, "/usr/lib/portage/pym")
import xpak
xpak.xpak(sys.argv[1],sys.argv[2])