From cb447620084a20be80d116c81c2e9ec110be7118 Mon Sep 17 00:00:00 2001 From: davidovski Date: Sun, 16 Jan 2022 01:23:51 +0000 Subject: restructured repo system --- repo/system/nspr.xibuild | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 repo/system/nspr.xibuild (limited to 'repo/system/nspr.xibuild') diff --git a/repo/system/nspr.xibuild b/repo/system/nspr.xibuild new file mode 100644 index 0000000..733c333 --- /dev/null +++ b/repo/system/nspr.xibuild @@ -0,0 +1,18 @@ +#!/bin/bash + +DEPS=(glibc bash) + +SOURCE=https://archive.mozilla.org/pub/nspr/releases/v4.33/src/nspr-4.33.tar.gz +DESC="Netscape Portable Runtime" + +build () { + sed -ri '/^RELEASE/s/^/#/' pr/src/misc/Makefile.in + sed -i 's#$(LIBRARY) ##' config/rules.mk + + + cd nspr + ./configure \ + --prefix=/usr --with-mozilla --with-pthreads --enable-64bit + make + make DESTDIR=$PKG_DEST install +} -- cgit v1.2.1