mirror of
https://github.com/moparisthebest/pacman
synced 2024-10-31 23:55:04 -04:00
12 lines
257 B
Python
12 lines
257 B
Python
|
self.description = "Get package list from sync dbs"
|
||
|
|
||
|
sp = pmpkg("dummy")
|
||
|
sp.files = ["bin/dummy",
|
||
|
"usr/man/man1/dummy.1"]
|
||
|
self.addpkg2db("sync", sp)
|
||
|
|
||
|
self.args = "-Sl"
|
||
|
|
||
|
self.addrule("PACMAN_RETCODE=0")
|
||
|
self.addrule("PACMAN_OUTPUT=%s" % sp.name)
|