scanmem: split package
This commit is contained in:
parent
58c7c07bd0
commit
1abc238316
5 changed files with 38 additions and 5 deletions
|
@ -3010,6 +3010,7 @@ libflatpak.so.0 flatpak-0.9.3_2
|
||||||
libnanomsg.so.5 nanomsg-1.1.3_1
|
libnanomsg.so.5 nanomsg-1.1.3_1
|
||||||
libindicator3.so.7 libindicator-12.10.1_1
|
libindicator3.so.7 libindicator-12.10.1_1
|
||||||
libappindicator3.so.1 libappindicator-12.10.0_1
|
libappindicator3.so.1 libappindicator-12.10.0_1
|
||||||
|
libscanmem.so.1 libscanmem-0.17_5
|
||||||
libsctp.so.1 lksctp-tools-1.0.17_1
|
libsctp.so.1 lksctp-tools-1.0.17_1
|
||||||
libwithsctp.so.1 lksctp-tools-1.0.17_1
|
libwithsctp.so.1 lksctp-tools-1.0.17_1
|
||||||
libnss_ldap.so.2 nss-pam-ldapd-0.9.7_4
|
libnss_ldap.so.2 nss-pam-ldapd-0.9.7_4
|
||||||
|
|
1
srcpkgs/gameconqueror
Symbolic link
1
srcpkgs/gameconqueror
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
scanmem
|
1
srcpkgs/libscanmem
Symbolic link
1
srcpkgs/libscanmem
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
scanmem
|
1
srcpkgs/libscanmem-devel
Symbolic link
1
srcpkgs/libscanmem-devel
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
scanmem
|
|
@ -1,20 +1,49 @@
|
||||||
# Template file for 'scanmem'
|
# Template file for 'scanmem'
|
||||||
pkgname=scanmem
|
pkgname=scanmem
|
||||||
version=0.17
|
version=0.17
|
||||||
revision=4
|
revision=5
|
||||||
build_style=gnu-configure
|
build_style=gnu-configure
|
||||||
configure_args="--disable-static --enable-gui"
|
configure_args="--disable-static --enable-gui"
|
||||||
hostmakedepends="libtool intltool m4 automake python"
|
hostmakedepends="automake gettext-devel intltool libtool m4 python"
|
||||||
makedepends="readline-devel gettext-devel"
|
makedepends="readline-devel"
|
||||||
depends="polkit gtk+3 python-gobject"
|
|
||||||
short_desc="Memory scanner designed to isolate the address of an arbitrary var"
|
short_desc="Memory scanner designed to isolate the address of an arbitrary var"
|
||||||
maintainer="Andrea Brancaleoni <abc@pompel.me>"
|
maintainer="Andrea Brancaleoni <abc@pompel.me>"
|
||||||
license="GPL-3"
|
license="GPL-3.0-only"
|
||||||
homepage="https://github.com/scanmem/scanmem"
|
homepage="https://github.com/scanmem/scanmem"
|
||||||
distfiles="https://github.com/${pkgname}/${pkgname}/archive/v${version}.tar.gz"
|
distfiles="https://github.com/${pkgname}/${pkgname}/archive/v${version}.tar.gz"
|
||||||
checksum=f02054b91322cf41517506158fcb74554e9fc6644e696f8aa25e5acf162d374b
|
checksum=f02054b91322cf41517506158fcb74554e9fc6644e696f8aa25e5acf162d374b
|
||||||
CFLAGS="-D__NEED_pid_t"
|
CFLAGS="-D__NEED_pid_t"
|
||||||
|
|
||||||
|
nocross="checking for /proc/self/maps... configure: error"
|
||||||
|
|
||||||
pre_configure() {
|
pre_configure() {
|
||||||
NOCONFIGURE=1 ./autogen.sh
|
NOCONFIGURE=1 ./autogen.sh
|
||||||
}
|
}
|
||||||
|
|
||||||
|
libscanmem_package() {
|
||||||
|
short_desc+=" - runtime library"
|
||||||
|
license="LGPL-3.0-only"
|
||||||
|
pkg_install() {
|
||||||
|
vmove "usr/lib/*.so*"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
libscanmem-devel_package() {
|
||||||
|
short_desc+=" - development files"
|
||||||
|
license="LGPL-3.0-only"
|
||||||
|
depends="lib${sourcepkg}>=${version}_${revision}"
|
||||||
|
pkg_install() {
|
||||||
|
vmove usr/include
|
||||||
|
vmove "usr/lib/*.so"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
gameconqueror_package() {
|
||||||
|
short_desc="GameConqueror is a GUI front-end for scanmem, providing more features"
|
||||||
|
depends="polkit gtk+3 python3-gobject lib${sourcepkg}>=${version}_${revision}"
|
||||||
|
archs=noarch
|
||||||
|
pkg_install() {
|
||||||
|
cd $DESTDIR
|
||||||
|
find * -iname "*${pkgname}*" -prune | while read f; do vmove $f; done
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue