scanmem.exlib minor cleanup

This commit is contained in:
Martin Sekera 2018-12-19 09:53:31 +01:00
parent e5e2168235
commit 775a96a5ad

View file

@ -1,7 +1,7 @@
# Copyright 2018 Martin Sekera <sekerama@gmail.com> # Copyright 2018 Martin Sekera <sekerama@gmail.com>
# Distributed under the terms of the GNU General Public License v2 # Distributed under the terms of the GNU General Public License v2
# require autotools [ supported_autoconf=[ 2.5 ] supported_automake=[ 1.16 ] ] #require autotools [ supported_autoconf=[ 2.5 ] supported_automake=[ 1.16 ] ]
require github [ tag=v${PV} ] require github [ tag=v${PV} ]
SUMMARY="A memory scanner for Linux." SUMMARY="A memory scanner for Linux."
@ -27,12 +27,12 @@ DEPENDENCIES="
) )
" "
src_prepare(){ DEFAULT_SRC_CONFIGURE_OPTION_ENABLES=(
gui
)
# autotools.exlib fucks it up somehow
src_prepare() {
default default
edo ./autogen.sh edo ./autogen.sh
} }
src_configure() {
econf $(option_enable gui)
}