blob: 35fab3b0df87e995bca614462ac17a653296f410 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#!/bin/mkpkg
# description: Attach a running process to a new terminal
# url: https://github.com/nelhage/reptyr
name=reptyr
version=0.10.0
release=1
source=(https://github.com/nelhage/reptyr/archive/refs/tags/reptyr-$version.tar.gz)
sha256sums=(
"c6ffbc34a511ac00d072219bda30699e51f2f4eb483cbae9e32e981d49e8b380"
)
build() {
cd $SRC/reptyr-reptyr-$version
make PREFIX=/usr
make PREFIX=/usr DESTDIR=$PKG install
rm -rf $PKG/usr/share/man/fr/
}
signify() {
untrusted comment: public key
RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}
# vim: filetype=sh
|