st: 0.9.2

This commit is contained in:
Daniel Azevedo 2024-10-04 16:46:26 +01:00
parent f66dd4d398
commit 233afb4887
5 changed files with 39 additions and 0 deletions

5
REPO
View file

@ -76,6 +76,7 @@ d:yubico-authenticator-bin
d:gconf
d:sxhkd
d:abiword
d:st
d:scrot
d:nerd-fonts
d:faba-icon-theme
@ -413,6 +414,10 @@ f:006bd3bbc7229d7002782a4b076d31bc:abiword/.signature
f:b9e7d242e7a7cd73e313e172eceeb503:abiword/enchant-2.1.patch
f:f77867e9db3f66c26559c28804a444bf:abiword/.footprint
f:90a32ac639e4420b56356431dec93102:abiword/Pkgfile
f:15bf1d6c650d8d0130bc292e11ebfbbb:st/.signature
f:ea72d06fe1abad201a0d7cd9fafdf2d1:st/.md5sum
f:6b0d6180cf988e7ee7779c0dce6ded3b:st/.footprint
f:d41159c949014dd4e81f51868ec30ec3:st/Pkgfile
f:27c1819954163276be72f65950a300cc:scrot/.signature
f:6b9b833d7ff417476cd386bdaa6ed4b7:scrot/.md5sum
f:937cf19b3766d2454a8631265add3e6d:scrot/.footprint

7
st/.footprint Normal file
View file

@ -0,0 +1,7 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/st
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/
-rw-r--r-- root/root usr/share/man/man1/st.1.gz

2
st/.md5sum Normal file
View file

@ -0,0 +1,2 @@
9c9065ae452daa973a30398d85c8b43f st-0.9.2.tar.gz
2bd6801c2abd29c86e7b5908b043708d st-alpha-20220206-0.8.5.diff

6
st/.signature Normal file
View file

@ -0,0 +1,6 @@
untrusted comment: verify with /etc/ports/d77crux.pub
RWT0dvMs3lAWkDrOGGWb499p4XRXzVRg+mWEoibX/QLYfHpoM9OKL+8yWnnoqNsZTBxFpSqq1MoukzUZY8EI7RlERsNvovLodAY=
SHA256 (Pkgfile) = 73d5f6a8288f8dd2387cdb0af700e2973a71a19c8609892f0409f3076b499500
SHA256 (.footprint) = 691a6289f6a50fbf5ac809a9575739a0cf939045f0b1b24f28847765a13a620b
SHA256 (st-0.9.2.tar.gz) = 6b215d4f472b21d6232f30f221117a777e24bcfee68955ddefb7426467f9494b
SHA256 (st-alpha-20220206-0.8.5.diff) = 42e4803ce2a67835f7e533a707a8a28e3804a26ced163145108970b9aee5fb81

19
st/Pkgfile Normal file
View file

@ -0,0 +1,19 @@
# Description: simple terminal from suckless
# URL: https://st.suckless.org
# Maintainer: Daniel Azevedo, daniazevedo77 at posteo dot net
# Depends on:
name=st
version=0.9.2
release=1
source=(https://dl.suckless.org/st/$name-$version.tar.gz https://st.suckless.org/patches/alpha/$name-alpha-20220206-0.8.5.diff)
build() {
cd $name-$version
patch -i $SRC/$name-alpha-20220206-0.8.5.diff
sed -i 's|PREFIX = /usr/local|PREFIX = /usr|' config.mk
sed -i 's|# CC = c99|CC = gcc|' config.mk
make
sed -i 's|Liberation Mono:pixelsize=12|Hack:pixelsize=10|' config.h
make DESTDIR=$PKG install
}