From a7173a103fda045ddd6f4dfc2fd5f9bec9d94b67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Buchm=C3=BCller?= Date: Wed, 25 Apr 2018 16:40:36 +0200 Subject: [PATCH] mame: install tools in /usr/bin MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Closes #13835 Signed-off-by: Jürgen Buchmüller --- srcpkgs/mame/template | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/srcpkgs/mame/template b/srcpkgs/mame/template index 4b237f0f473..dc0b1f5cbb6 100644 --- a/srcpkgs/mame/template +++ b/srcpkgs/mame/template @@ -1,7 +1,7 @@ # Template file for 'mame' pkgname=mame version=0197 -revision=1 +revision=2 wrksrc="mame-mame${version}" homepage="http://mamedev.org" distfiles="https://github.com/mamedev/mame/archive/mame${version}.tar.gz" @@ -82,18 +82,20 @@ do_install() { for f in mame mame64 mamearcade mamearcade64; do if [ -r ${f} ]; then vinstall ${f} 755 usr/share/${pkgname} mame + break fi done for f in mess mess64; do if [ -r ${f} ]; then vinstall ${f} 755 usr/share/${pkgname} mess + break fi done # Install the tools for f in chdman jedutil regrep pngcmp romcmp src2html srcclean \ ldverify ldresample unidasm castool floptool imgtool; do - vinstall ${f} 755 usr/share/${pkgname} + vbin ${f} if [ -f docs/man/${f}.1 ]; then vman docs/man/${f}.1 fi