mirror of
https://github.com/moparisthebest/pacman
synced 2024-10-31 23:55:04 -04:00
13 lines
271 B
Python
13 lines
271 B
Python
|
self.description = "Upgrade a package (not installed)"
|
||
|
|
||
|
p = pmpkg("dummy")
|
||
|
p.files = ["bin/dummy",
|
||
|
"usr/man/man1/dummy.1"]
|
||
|
self.addpkg(p)
|
||
|
|
||
|
self.args = "-U %s" % p.filename()
|
||
|
|
||
|
self.addrule("PKG_EXIST=dummy")
|
||
|
for f in p.files:
|
||
|
self.addrule("FILE_EXIST=%s" % f)
|