This commit is contained in:
Eray Özkural
2005-06-10 12:40:49 +00:00
parent e8366a4fac
commit 9fc8b06905
2 changed files with 12 additions and 6 deletions
+6
View File
@@ -0,0 +1,6 @@
PISI is a new package manager implemented in python.
Guidelines:
1. When using dirnames, don't expect the dir to end with a trailing slash,
and use the dirnames in pisiconfig
+6 -6
View File
@@ -1,8 +1,8 @@
# -*- coding: utf-8 -*-
lib_dir = "/var/lib/pisi/"
db_dir = "/var/db/pisi/"
archives_dir = "/var/cache/pisi/archives/"
tmp_dir = "/var/tmp/pisi/"
build_dir = tmp_dir + "build/"
image_dir = tmp_dir + "image"
lib_dir = "/var/lib/pisi"
db_dir = "/var/db/pisi"
archives_dir = "/var/cache/pisi/archives"
tmp_dir = "/var/tmp/pisi"
build_dir = tmp_dir + "/build"
image_dir = tmp_dir + "/image"