new package: dcraw, gnuplot and digikam: ver. bump

This commit is contained in:
suvari
2025-04-07 08:44:47 +03:00
parent 781d41dd85
commit 49a1ac4e54
11 changed files with 299123 additions and 298949 deletions
+23
View File
@@ -0,0 +1,23 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import shelltools
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
WorkDir = "dcraw"
def build():
autotools.compile('-DLOCALEDIR="\\"/usr/share/locale\\"" -lm -ljasper -llcms2 -ljpeg -o dcraw dcraw.c')
def install():
pisitools.dobin("dcraw")
pisitools.doman("dcraw.1")
# Build catalogs
for f in shelltools.ls("*.po"):
pisitools.domo(f, f.split("dcraw_")[1].split(".po")[0], "dcraw.mo")