tnef: new port at 1.4.18

This commit is contained in:
Heiko Irrgang
2023-12-13 09:47:54 +01:00
parent da16ded9a7
commit e06da28291
3 changed files with 27 additions and 0 deletions

1
main/tnef/.checksums Normal file
View File

@@ -0,0 +1 @@
c18c0166aaf5d19355394515978480e6 tnef-1.4.18.tar.gz

8
main/tnef/.pkgfiles Normal file
View File

@@ -0,0 +1,8 @@
tnef-1.4.18-1
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/tnef
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/tnef.1.gz

18
main/tnef/spkgbuild Normal file
View File

@@ -0,0 +1,18 @@
# description : Program for unpacking winmail.dat email attachments
name=tnef
version=1.4.18
release=1
source="https://github.com/verdammelt/tnef/archive/refs/tags/1.4.18.tar.gz"
source="$name-$version.tar.gz::https://github.com/verdammelt/tnef/archive/refs/tags/${version}.tar.gz"
build() {
cd $name-$version
# automake actually fails with an error, but it does the required job of adding the missing files
# so we ignore the error here and continue
automake --add-missing || true
autoreconf
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}