File: dontpanic.alienfile

package info (click to toggle)
libalien-build-perl 2.84-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,116 kB
  • sloc: perl: 10,350; ansic: 134; sh: 66; makefile: 2
file content (30 lines) | stat: -rw-r--r-- 455 bytes parent folder | download
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
use alienfile;

probe sub { 'share' };

share {

  start_url 'https://github.com/PerlAlien/dontpanic.git';

  download [
    [ "git clone --bare %{.meta.start_url}" ]
  ];

  extract [
    [ "git clone %{.install.download}" ]
  ];

  plugin 'Build::Autoconf';

  plugin 'Gather::IsolateDynamic';

  build [
    'git checkout 1.00',
    'bash autogen.sh',
    '%{configure} --enable-static --enable-shared',
    '%{make}',
    '%{make} install',
  ];


};