From 8ef903d974f89ba1af970db3b526ac0ac9e8f16c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Tue, 13 Dec 2022 00:12:25 +0700 Subject: [PATCH] rmlint: fix rmlint-dbg package --- srcpkgs/rmlint/template | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/srcpkgs/rmlint/template b/srcpkgs/rmlint/template index 5fdc9eef154..cd7dfdbcade 100644 --- a/srcpkgs/rmlint/template +++ b/srcpkgs/rmlint/template @@ -1,8 +1,10 @@ # Template file for 'rmlint' pkgname=rmlint version=2.10.1 -revision=5 +revision=6 build_style=scons +make_build_args="VERBOSE=1" +make_install_args="VERBOSE=1" hostmakedepends="pkg-config python3-Sphinx glib-devel" makedepends="libblkid-devel elfutils-devel json-glib-devel" short_desc="Extremely fast tool to remove duplicates" @@ -13,7 +15,12 @@ changelog="https://raw.githubusercontent.com/sahib/rmlint/master/CHANGELOG.md" distfiles="https://github.com/sahib/${pkgname}/archive/v${version}.tar.gz" checksum=10e72ba4dd9672d1b6519c0c94eae647c5069c7d11f1409a46e7011dd0c6b883 -do_install() { - scons install --prefix=${DESTDIR}/usr +pre_install() { + vmkdir usr/bin + vmkdir usr/share/man/man1 + make_install_args+=" --prefix=${DESTDIR}/usr" +} + +post_install() { rm -f "${DESTDIR}/usr/share/glib-2.0/schemas/gschemas.compiled" }