mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-14 13:25:09 -05:00
287f7a575e
Signed-off-by: Florian Pritz <bluewind@xinu.at>
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;
|
|
}
|