wok view reptyr/receipt @ rev 21885

Up reptyr (0.7.0)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Oct 02 17:23:06 2019 +0200 (2019-10-02)
parents 79d24bcb2063
children 91afa79e06ed
line source
1 # SliTaz package receipt.
3 PACKAGE="reptyr"
4 VERSION="0.7.0"
5 CATEGORY="system-tools"
6 SHORT_DESC="Reparent a running program to a new terminal"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="MIT"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://github.com/nelhage/reptyr"
11 WGET_URL="$WEB_SITE/archive/$TARBALL"
13 DEPENDS=""
14 BUILD_DEPENDS="wget"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 sed -i 's|/usr/local|/usr|' Makefile
20 make &&
21 make DESTDIR=$DESTDIR install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $install/usr/bin $fs/usr
29 }