Package_packimages.mk (58c70741) | Package_packimages.mk (bf2083a7) |
---|---|
1#************************************************************** | 1#************************************************************** |
2# | 2# |
3# Licensed to the Apache Software Foundation (ASF) under one 4# or more contributor license agreements. See the NOTICE file 5# distributed with this work for additional information 6# regarding copyright ownership. The ASF licenses this file 7# to you under the Apache License, Version 2.0 (the 8# "License"); you may not use this file except in compliance 9# with the License. You may obtain a copy of the License at | 3# Licensed to the Apache Software Foundation (ASF) under one 4# or more contributor license agreements. See the NOTICE file 5# distributed with this work for additional information 6# regarding copyright ownership. The ASF licenses this file 7# to you under the Apache License, Version 2.0 (the 8# "License"); you may not use this file except in compliance 9# with the License. You may obtain a copy of the License at |
10# | 10# |
11# http://www.apache.org/licenses/LICENSE-2.0 | 11# http://www.apache.org/licenses/LICENSE-2.0 |
12# | 12# |
13# Unless required by applicable law or agreed to in writing, 14# software distributed under the License is distributed on an 15# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16# KIND, either express or implied. See the License for the 17# specific language governing permissions and limitations 18# under the License. | 13# Unless required by applicable law or agreed to in writing, 14# software distributed under the License is distributed on an 15# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16# KIND, either express or implied. See the License for the 17# specific language governing permissions and limitations 18# under the License. |
19# | 19# |
20#************************************************************** 21 | 20#************************************************************** 21 |
22 23 | |
24$(eval $(call gb_Package_Package,packimages_packimages,$(WORKDIR)/CustomTarget/packimages,packimages)) 25 26# Custom sets, at 24x24 & 16x16 fall-back to industrial preferentially 27CUSTOM_IMAGE_SETS := hicontrast industrial classic 28CUSTOM_PREFERRED_FALLBACK_1 := -c $(SRCDIR)/ooo_custom_images/industrial 29CLASSIC_TARBALL=$(SRCDIR)/ooo_custom_images/classic/classic_images.tar.gz 30 31$(eval $(call gb_Package_add_file,packimages_packimages,bin/images.zip,bin/images.zip)) --- 84 unchanged lines hidden (view full) --- 116 mkdir -p $(dir $@) && \ 117 cd $(dir $@) && \ 118 gunzip -c $(CLASSIC_TARBALL) | ( tar -xf - ) && \ 119 touch $@ 120 $(if $(filter UNX,$(GUI)),chmod -R g+w $(WORKDIR)/CustomTarget/packimages/classic) 121 cat $@ || echo "ERROR: unpacking $(CLASSIC_TARBALL) failed" 122endif 123 | 22$(eval $(call gb_Package_Package,packimages_packimages,$(WORKDIR)/CustomTarget/packimages,packimages)) 23 24# Custom sets, at 24x24 & 16x16 fall-back to industrial preferentially 25CUSTOM_IMAGE_SETS := hicontrast industrial classic 26CUSTOM_PREFERRED_FALLBACK_1 := -c $(SRCDIR)/ooo_custom_images/industrial 27CLASSIC_TARBALL=$(SRCDIR)/ooo_custom_images/classic/classic_images.tar.gz 28 29$(eval $(call gb_Package_add_file,packimages_packimages,bin/images.zip,bin/images.zip)) --- 84 unchanged lines hidden (view full) --- 114 mkdir -p $(dir $@) && \ 115 cd $(dir $@) && \ 116 gunzip -c $(CLASSIC_TARBALL) | ( tar -xf - ) && \ 117 touch $@ 118 $(if $(filter UNX,$(GUI)),chmod -R g+w $(WORKDIR)/CustomTarget/packimages/classic) 119 cat $@ || echo "ERROR: unpacking $(CLASSIC_TARBALL) failed" 120endif 121 |
122# vim: set noet sw=4 ts=4: |
|