alicelinux

A lightweight musl + clang/llvm + libressl + busybox distro
git clone https://codeberg.org/emmett1/alicelinux
Log | Files | Refs | README | LICENSE

abuild (383B)


      1 name=nspr
      2 version=4.37
      3 release=1
      4 source="https://archive.mozilla.org/pub/$name/releases/v$version/src/$name-$version.tar.gz"
      5 
      6 build() {
      7 	cd nspr
      8 	sed -ri '/^RELEASE/s/^/#/' pr/src/misc/Makefile.in
      9 	sed -i 's#$(LIBRARY" ##'   config/rules.mk
     10 	
     11 	./configure --prefix=/usr \
     12 	            --with-mozilla \
     13 	            --with-pthreads \
     14 	            --enable-64bit
     15 	make
     16 	make install
     17 }