wok diff reptyr/receipt @ rev 25457

Normazile https://sourceforge.net/projects web_sites
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Sep 23 08:28:09 2022 +0000 (20 months ago)
parents ac8ca9758df1
children
line diff
     1.1 --- a/reptyr/receipt	Sat Jan 15 15:21:40 2022 +0000
     1.2 +++ b/reptyr/receipt	Fri Sep 23 08:28:09 2022 +0000
     1.3 @@ -1,13 +1,14 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="reptyr"
     1.7 -VERSION="0.7.0"
     1.8 +VERSION="0.9.0"
     1.9  CATEGORY="system-tools"
    1.10 -SHORT_DESC="Reparent a running program to a new terminal"
    1.11 +SHORT_DESC="Reparent a running program to a new terminal."
    1.12  MAINTAINER="pascal.bellard@slitaz.org"
    1.13  LICENSE="MIT"
    1.14 +WEB_SITE="https://github.com/nelhage/reptyr"
    1.15 +
    1.16  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.17 -WEB_SITE="https://github.com/nelhage/reptyr"
    1.18  WGET_URL="$WEB_SITE/archive/$TARBALL"
    1.19  
    1.20  DEPENDS=""
    1.21 @@ -22,17 +23,14 @@
    1.22  # Rules to configure and make the package.
    1.23  compile_rules()
    1.24  {
    1.25 -	sed -i 's|/usr/local|/usr|' Makefile
    1.26  	sed -i 's|PTRACE_GETREGSET|0x4204|;s|PTRACE_SETREGSET|0x4205|' \
    1.27  		platform/linux/linux_ptrace.c
    1.28 -	make &&
    1.29 -	make DESTDIR=$DESTDIR install
    1.30 +	make PREFIX=/usr &&
    1.31 +	make install PREFIX=/usr DESTDIR=$DESTDIR
    1.32  }
    1.33  
    1.34  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.35  genpkg_rules()
    1.36  {
    1.37 -	mkdir -p $fs/usr
    1.38 -	cp -a $install/usr/bin $fs/usr
    1.39 +	cook_copy_folders	bin
    1.40  }
    1.41 -