File: lua.pm

package info (click to toggle)
dh-lua 35
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 228 kB
  • sloc: ansic: 110; perl: 93; sh: 57; makefile: 56
file content (14 lines) | stat: -rw-r--r-- 343 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#! /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("dh_auto_test","autopkgtest");
add_command_options("dh_compress", "-X.lua");
insert_after("dh_install", "dh_lua");

1