File: lua.pm

package info (click to toggle)
dh-lua 15
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 172 kB
  • sloc: ansic: 98; perl: 81; makefile: 46; sh: 46
file content (13 lines) | stat: -rw-r--r-- 300 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
#! /usr/bin/perl
# Copyright: © 2012 Enrico Tassi <gareuselesinge@debian.org>
# License: MIT/X
# Strongly based on the ruby build systems. Thanks Lucas!

use warnings;
use strict;
use Debian::Debhelper::Dh_Lib;

add_command_options("dh_compress", "-X.lua");
insert_after("dh_install", "dh_lua");

1