12345678910111213141516171819202122232425262728293031 |
- pkgname = "source-highlight"
- pkgver = "3.1.9"
- pkgrel = 0
- build_style = "gnu_configure"
- configure_args = ["--with-bash-completion=/usr/share/bash-completion/completions"]
- make_check_args = ["-j1"]
- hostmakedepends = ["pkgconf", "automake", "libtool"]
- makedepends = ["boost-devel"]
- pkgdesc = "Convert source code to syntax highlighted document"
- maintainer = "q66 <q66@chimera-linux.org>"
- license = "GPL-3.0-or-later"
- url = "http://www.gnu.org/software/src-highlite"
- source = f"$(GNU_SITE)/src-highlite/{pkgname}-{pkgver}.tar.gz"
- sha256 = "3a7fd28378cb5416f8de2c9e77196ec915145d44e30ff4e0ee8beb3fe6211c91"
- options = ["!cross"]
- # aarch64 libtool fix
- def pre_configure(self):
- self.do("autoreconf", "-if")
- def post_install(self):
- self.install_license("COPYING")
- @subpackage("source-highlight-libs")
- def _libs(self):
- return self.default_libs()
- @subpackage("source-highlight-devel")
- def _devel(self):
- return self.default_devel()
|