
Oubli d'un "/"... darcs-hash:20071218204045-af139-2f3b9182e3e64284ae810c02bca9e1d0880dc380.gz
24 lines
508 B
Python
24 lines
508 B
Python
# -*- mode: python; coding: utf-8 -*-
|
|
|
|
include("mode/space")
|
|
header()
|
|
|
|
if has("debian-mirror"):
|
|
mirror = "file:/mirror/"
|
|
else:
|
|
mirror = "ftp://mirror.adm.crans.org/"
|
|
|
|
def source(args):
|
|
%deb mirror + args
|
|
%deb-src mirror + args
|
|
|
|
source("debian etch main contrib")
|
|
source("debian-volatile etch/volatile main contrib")
|
|
source("debian-security etch/updates main")
|
|
|
|
if has("test"):
|
|
@# Mplayer...
|
|
source("debian-multimedia etch main")
|
|
|
|
@# Paquet construit a la main
|
|
source("custom ./")
|