29 lines
893 B
Python
29 lines
893 B
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
#
|
|
# Licensed under the GNU General Public License, version 2.
|
|
# See the file https://www.gnu.org/copyleft/gpl.txt.
|
|
|
|
from pisi.actionsapi import get, mesontools, pisitools
|
|
|
|
def setup():
|
|
pisitools.ldflags.add("-lX11 -lICE -lSM")
|
|
mesontools.configure("--libexecdir=/usr/lib/%s \
|
|
-Dmathjax-directory=/usr/share/mathjax2 \
|
|
-Depub=true \
|
|
-Dcomics=true \
|
|
-Ddjvu=false \
|
|
-Ddvi=false \
|
|
-Dt1lib=true \
|
|
-Dpixbuf=true \
|
|
-Dhelp_files=true \
|
|
-Dintrospection=true" % get.srcNAME())
|
|
|
|
def build():
|
|
mesontools.build()
|
|
|
|
def install():
|
|
mesontools.install()
|
|
|
|
pisitools.dodoc("AUTHORS", "ChangeLog", "README*", "NEWS")
|