diff options
author | Justin Davis <jrcd83@gmail.com> | 2011-08-16 18:29:24 +0200 |
---|---|---|
committer | Justin Davis <jrcd83@gmail.com> | 2011-08-16 18:29:24 +0200 |
commit | 861fc1a315eeea5e198e706abde72a1e7f68a5fb (patch) | |
tree | 00f16b515af5254b9ae7273b0dea82db20896639 /bin | |
parent | b01a803e7aee81275a48670cecca6a5d75edaa0d (diff) | |
download | genpkg-861fc1a315eeea5e198e706abde72a1e7f68a5fb.tar.gz genpkg-861fc1a315eeea5e198e706abde72a1e7f68a5fb.tar.xz |
Set the pkgname in pbj to match the .pbj filename.
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/macros/perl-dist | 3 | ||||
-rwxr-xr-x | bin/pbj | 5 |
2 files changed, 4 insertions, 4 deletions
diff --git a/bin/macros/perl-dist b/bin/macros/perl-dist index 3dd2263..09381ff 100755 --- a/bin/macros/perl-dist +++ b/bin/macros/perl-dist @@ -347,8 +347,7 @@ sub main my $deps = Convert::prereqs($name, $meta->{'prereqs'}); my %pbvars = - ('pkgname' => $name, - 'pkgver' => $ver, + ('pkgver' => $ver, 'pkgdesc' => $meta->{'abstract'}, 'arch' => (xsdist($dir) ? ['i686', 'x86_64'] : 'any'), @@ -43,8 +43,9 @@ cd "$pkgroot/$pkg" export PATH="$PATH:$bindir/macros:$bindir/templ" -# Provide values for things macros won't be able to. -printf "+ pbjver $VERSION\n+ pkgrel ${PKGREL:-1}\n" \ +# Match the pkgname to the .pbj filename. +# Provide values for other things macros won't be able to. +printf "+ pkgname $pkg\n+ pkgrel ${PKGREL:-1}\n+ pbjver $VERSION\n" \ | cat - "$jamfile" \ | awk -v packager="$PACKAGER" -f "$bindir/pbjparse.awk" \ > PKGBUILD |