Skip to content

Commit

Permalink
luit package: use autotools. (spack#11962)
Browse files Browse the repository at this point in the history
  • Loading branch information
Toyohisa Kameyama authored and scheibelp committed Jul 11, 2019
1 parent e3299e6 commit 6a731b4
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions var/spack/repos/builtin/packages/luit/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from spack import *


class Luit(Package):
class Luit(AutotoolsPackage):
"""Luit is a filter that can be run between an arbitrary application and
a UTF-8 terminal emulator such as xterm. It will convert application
output from the locale's encoding into UTF-8, and convert terminal
Expand All @@ -23,10 +23,6 @@ class Luit(Package):
depends_on('pkgconfig', type='build')
depends_on('util-macros', type='build')

def install(self, spec, prefix):
configure('--prefix={0}'.format(prefix),
# see http://www.linuxquestions.org/questions/linux-from-scratch-13/can't-compile-luit-xorg-applications-4175476308/ # noqa
'CFLAGS=-U_XOPEN_SOURCE -D_XOPEN_SOURCE=600')

make()
make('install')
# see http://www.linuxquestions.org/questions/linux-from-scratch-13/can't-compile-luit-xorg-applications-4175476308/ # noqa
def configure_args(self):
return ['CFLAGS=-U_XOPEN_SOURCE -D_XOPEN_SOURCE=600']

0 comments on commit 6a731b4

Please sign in to comment.