recode: updated to version 3.7.15

This commit is contained in:
2026-02-16 21:02:28 +00:00
parent 744f326a60
commit 823c5d9291
3 changed files with 22 additions and 22 deletions

View File

@@ -6,9 +6,9 @@ drwxr-xr-x root/root usr/include/
-rw-r--r-- root/root usr/include/recodext.h
drwxr-xr-x root/root usr/lib/
-rw-r--r-- root/root usr/lib/librecode.a
lrwxrwxrwx root/root usr/lib/librecode.so -> librecode.so.3.7.14
lrwxrwxrwx root/root usr/lib/librecode.so.3 -> librecode.so.3.7.14
-rwxr-xr-x root/root usr/lib/librecode.so.3.7.14
lrwxrwxrwx root/root usr/lib/librecode.so -> librecode.so.3.7.15
lrwxrwxrwx root/root usr/lib/librecode.so.3 -> librecode.so.3.7.15
-rwxr-xr-x root/root usr/lib/librecode.so.3.7.15
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/

View File

@@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/jmq.pub
RWTTPlFarK9CxFTrWpiMCUoqSd7f7GKDOcAmy2tKuK44EoKXT6n0Th+Cmr3boI/4r+3T2gVkWV+JviL1RCDjaw/3BdX/xNLyjgg=
SHA256 (Pkgfile) = 75b2a1febc55c58b84199925d713e29587a030481c9e7d3c905a2e99648ebbc3
SHA256 (.footprint) = 119b571a2ef7959b6e0547bd09c561e3c893ba4c122541e94a6e9777c0789254
SHA256 (recode-3.7.14.tar.gz) = 786aafd544851a2b13b0a377eac1500f820ce62615ccc2e630b501e7743b9f33
RWTTPlFarK9CxLRLnCYaJsXYSAHANqJH0K1uaVpPkngC5//sLzi0up68A2Seb+wS6T9bhQK/dTzbI4k94ajLQ1FIsx+xelpT0gk=
SHA256 (Pkgfile) = e5cf29c646f3512cf4467764dafda97716ecbe2e34a23083a3a3d9b62601c2d6
SHA256 (.footprint) = 996bd38fbaebf65425a42b349e4d5a00228e544764c0e463f453ca5c8bb0073b
SHA256 (recode-3.7.15.tar.gz) = f590407fc51badb351973fc1333ee33111f05ec83a8f954fd8cf0c5e30439806

View File

@@ -1,23 +1,23 @@
# Description: converts files between various character sets and usages
# URL: https://github.com/rrthomas/recode
# Maintainer: John McQuah, jmcquah at disroot dot org
# Depends on: help2man
# Description: converts files between various character sets and usages
# URL: https://github.com/rrthomas/recode
# Maintainer: John McQuah, jmcquah at disroot dot org
# Depends on: help2man
name=recode
version=3.7.14
version=3.7.15
release=1
source=(https://github.com/rrthomas/recode/releases/download/v${version}/${name}-${version}.tar.gz)
build() {
cd $name-$version
./configure \
--prefix=/usr \
--disable-nls
# contrib/help2man is built without locale support, so we do:
sed -i '/HELP2MAN/s/--locale=.*/\\/' src/Makefile
cd $name-$version
./configure \
--prefix=/usr \
--disable-nls
# contrib/help2man is built without locale support, so we do:
sed -i '/--locale=.*/d' src/Makefile
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/lib/*.la
rm -rf $PKG/usr/share/info
make
make DESTDIR="$PKG" install
rm -rf "$PKG"/usr/lib/*.la
rm -rf "$PKG"/usr/share/info
}