17 lines
719 B
Makefile
17 lines
719 B
Makefile
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
|
#
|
|
# This file is part of the LibreOffice project.
|
|
#
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
#
|
|
|
|
# The patsubst is used to remove the trailing '/' dir produces.
|
|
# Otherwise the package tries to depend on zip target brand//intro,
|
|
# which is unfortunately different from brand/intro...
|
|
$(eval $(call gb_Package_Package,desktop_intro,$(patsubst %/,%,$(dir $(call gb_Zip_get_target,brand/intro)))))
|
|
|
|
$(eval $(call gb_Package_add_file,desktop_intro,pck/intro.zip,intro.zip))
|
|
|
|
# vim: set ts=4 sw=4 et:
|