Provide some vars for use in template's targets.

These new vars are DESTDIR (by default XBPS_DESTDIR/pkgname-version),
SRCPKGDESTDIR (XBPS_DESTDIR/sourcepkg-version) and FILESDIR
(XBPS_TEMPLATESDIR/pkgname/files).

This simplifies packages that used them.

--HG--
extra : convert_revision : 287ea7128cb5df19870ca7aff0a3b8f99a11d63a
This commit is contained in:
Juan RP
2009-03-11 06:31:56 +01:00
parent 529cb677ff
commit 84222395b8
90 changed files with 535 additions and 735 deletions

View File

@@ -14,8 +14,7 @@ long_desc="
do_install()
{
local destdir=$XBPS_DESTDIR/$pkgname-$version
install -d $destdir/usr/share/dict
install $wrksrc/$pkgname-${words_date} $destdir/usr/share/dict/$pkgname
install -d ${DESTDIR}/usr/share/dict
install $wrksrc/$pkgname-${words_date} \
${DESTDIR}/usr/share/dict/${pkgname}
}