From fbfedd663bd2395659d80976a3ce4328a2a4c5bd Mon Sep 17 00:00:00 2001 From: newbluemoon Date: Thu, 11 Nov 2021 10:18:18 +0100 Subject: [PATCH] ISOEnts: install files with the right permissions --- srcpkgs/ISOEnts/template | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/srcpkgs/ISOEnts/template b/srcpkgs/ISOEnts/template index 13cd868f9ba..6b0376fdd6a 100644 --- a/srcpkgs/ISOEnts/template +++ b/srcpkgs/ISOEnts/template @@ -1,7 +1,7 @@ # Template file for 'ISOEnts' pkgname=ISOEnts version=1986 -revision=5 +revision=6 create_wrksrc=yes depends="xmlcatmgr" short_desc="Character entity sets from ISO 8879:1986 (SGML)" @@ -13,7 +13,8 @@ checksum=dce4359a3996ed2fd33ad5eaa11a9bcfc24b5b06992e24295132b06db19a99b2 sgml_entries="CATALOG /usr/share/sgml/iso8879/catalog --" do_install() { - vmkdir usr/share/sgml/iso8879 - vcopy "*" usr/share/sgml/iso8879 + for f in *; do + vinstall $f 644 usr/share/sgml/iso8879 + done vinstall ${FILESDIR}/catalog 644 usr/share/sgml/iso8879 }