This file is indexed.

/usr/lib/hugs/packages/ALUT/Sound/ALUT.hs is in libhugs-alut-bundled 98.200609.21-5.4.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
--------------------------------------------------------------------------------
-- |
-- Module      :  Sound.ALUT
-- Copyright   :  (c) Sven Panne 2005
-- License     :  BSD-style (see the file libraries/ALUT/LICENSE)
-- 
-- Maintainer  :  sven.panne@aedion.de
-- Stability   :  provisional
-- Portability :  portable
--
-- A Haskell binding for the OpenAL Utility Toolkit, which makes managing of
-- OpenAL contexts, loading sounds in various formats and creating waveforms
-- very easy. For more information about the C library on which this binding is
-- based, please see: <http://www.openal.org/openal_webstf/specs/alut.html>.
--
--------------------------------------------------------------------------------

module Sound.ALUT (
   module Sound.OpenAL,

   module Sound.ALUT.Initialization,
   module Sound.ALUT.Loaders,
   module Sound.ALUT.Version,
   module Sound.ALUT.Sleep
)  where

import Sound.OpenAL

import Sound.ALUT.Initialization
import Sound.ALUT.Loaders
import Sound.ALUT.Version
import Sound.ALUT.Sleep