libnewt-32: initial import

This commit is contained in:
Danny Rawlins 2019-08-04 22:25:51 +10:00
parent bf23792f89
commit ef6ef40f50
4 changed files with 42 additions and 0 deletions

0
libnewt-32/.32bit Normal file
View File

9
libnewt-32/.footprint Normal file
View File

@ -0,0 +1,9 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/lib32/
-rw-r--r-- root/root usr/lib32/libnewt.a
lrwxrwxrwx root/root usr/lib32/libnewt.so -> libnewt.so.0.52
lrwxrwxrwx root/root usr/lib32/libnewt.so.0.52 -> libnewt.so.0.52.21
-rwxr-xr-x root/root usr/lib32/libnewt.so.0.52.21
drwxr-xr-x root/root usr/lib32/pkgconfig/
-rw-r--r-- root/root usr/lib32/pkgconfig/libnewt.pc
-rwxr-xr-x root/root usr/lib32/whiptcl.so

5
libnewt-32/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/compat-32.pub
RWSwxGo/zH7eXeaLpmtNo481rwf6NQv/sW5Z6Gg6Mgzk52GCQWMMlAvb3ZMVYwx5kbb/Ok0GxoW/ucYY64lCLBGO0aP0ZWU3FQw=
SHA256 (Pkgfile) = 3ea4619ffbfb63d71e51de517ab3d338bdd37de4e0c1f87477ebacc4a4bad06b
SHA256 (.footprint) = f9963e4f39367f61586d3ad1118cd0249fd77f9660b2fbf693ad9a4e5f183f6d
SHA256 (newt-0.52.21.tar.gz) = 265eb46b55d7eaeb887fca7a1d51fe115658882dfe148164b6c49fccac5abb31

28
libnewt-32/Pkgfile Normal file
View File

@ -0,0 +1,28 @@
# Description: a programming library for color text mode
# URL: https://pagure.io/newt
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
# Depends on: libnewt popt-32 slang-32 tcl-32
name=libnewt-32
version=0.52.21
release=1
source=(https://releases.pagure.org/newt/newt-$version.tar.gz)
build() {
cd newt-$version
sed -i "s:tcl8.4:tcl8.6:" Makefile.in
echo '#define USE_INTERP_RESULT 1' >> config.h
./autogen.sh
./configure \
--prefix=/usr \
--libdir=/usr/lib32 \
--without-python \
--disable-nls
make
make DESTDIR=$PKG install
rm -r $PKG/usr/{bin,include,share}
}