mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-15 05:45:03 -05:00
16 lines
257 B
Bash
16 lines
257 B
Bash
|
pkgname=foo
|
||
|
pkgver=1
|
||
|
|
||
|
build() {
|
||
|
# template start; name=perl-module; version=1.0;
|
||
|
echo "before bla template"
|
||
|
# template start; name=perl-bla; version=1.2;
|
||
|
bla bla
|
||
|
# template end;
|
||
|
echo "after bla template"
|
||
|
perl Makefile.pl
|
||
|
make
|
||
|
make install
|
||
|
# template end;
|
||
|
}
|