File: lua.pm

package info (click to toggle)
dh-lua 24
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 236 kB
  • ctags: 21
  • sloc: sh: 124; ansic: 110; perl: 96; makefile: 59
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